On Tue, Apr 13, 2010 at 11:46 AM, Vikram Garg <[email protected]> wrote: > Hi all > Can someone help me to split a very large .avi file ( about 100 mins , > 875MB) into 100, 1 min AUDIO files. > (some batch run kind of scenario)
I use the following to extract audio from video files. mplayer -ao pcm -vo audiodump.wav "$1" lame audiodump.wav -q 2 -b 192 "$n".mp3 rm audiodump.wav If you don't convert it to mp3 immediately, you can use sox to do the required. You'll have to write your own code to do it in batch. SB -- l...@iitd - http://tinyurl.com/ycueutm To unsubscribe, reply using "remove me" as the subject.
