dotmana.com

Ce site n'est pas le site officiel.
C'est un blog automatisé qui réplique les articles automatiquement

Process audio file with Sox using Room EQ Wizard filter file

Thursday 13 August 2015 at 17:25

Rationale: compensate a speaker response curve (gain and phase) on a audio file.

Just came accross REW (Room EQ Wizard) (Linux, Windows, Mac), it let you plot the output of your speakers, then create a filter to compensate the flaws.

Once you created your finely tuned speakers, Export-> Filter as text file.

Then, it’s time to process the audio file with this filter, using the amazing Sox:

sox -q input_file.wav output_file.wav `awk ‘$4==”PK” { gsub(/,/,”",$6 );val=$6;printf ” equalizer “val” “$12″q “$9}’ val=”%’6.3f” REW_filter.txt`

That’s it: you have a outputfile with the correct compensation for your just analysed speaker.

Of course this method is for non-real time need.

flattr this!

Source: http://www.dotmana.com/weblog/2015/08/process-audio-file-with-sox-using-room-eq-wizard-filter-file/