Nicolai Beuermann:
Does anybody has an idea to get read after write audio control. More precisely
howto record mp3 files and listen to the resulting file to monitor the
recording/encoding process?
Here's a way using jack_capture for recording, lame for converting, and
mplayer for playing:
(xterm -e 'jack_capture -ws|lame -s 44.1 -V2 -r -x - output.mp3' &) &&
sleep 2 && mplayer -ao jack output.mp3
(Note that jack_capture v0.17 and v0.18 won't work with the above
options, but all other versions should. V0.19 is just uploaded
to
http://old.notam02.no/arkiv/src/.)