2
I want to start recording when someone starts talking, and stop recording when it becomes silent.
I guess if there is stream audio processing tool like ImageMagick
, so I can strip away blank sections like this:
$ rec -t wav - | wavefilter -strip-blank=3sec | lame - >record1.mp3
EDIT
This question is resolved by using:
$ rec -t wav - silence 1 0.1 3% -1 1.0 3% | lame - >record1.mp3
I have developed a software that does exactly this , I am willing to provide it with certain cost if required. – Thunder – 2010-12-24T05:30:02.240