This may be easy, but I don't know how. How can I make a .wav or .mp3 sound file from an .mp4 or .avi video file? sox doesn't support this....
TIA!



Thank you, but the audio file made by ffmpeg becomes mp2 instead of mp3. How can I make an mp3? And I cannot make a 128kb bit rate file. I use "ffmpeg -i <video> -acodec copy -ab 128k <mp3_file>your_WooDness wrote:Hi,
you could use a GUI such as avidemux2 or ffmepg on the command line: ffmpeg -i <video_file> -acodec copy <mp3_file>
WooD

Code: Select all
ffmpeg -i <video_file> -acodec libmp3lame -ar 44100 -ab 128k -ac 2 <mp3_file>
Code: Select all
mplayer movie -aid track_id -dumpaudio -dumpfile where_you_want_audio.ac3Code: Select all
mplayer movie -dumpaudio -dumpfile where_you_want_audio.ac3
Thanks! It worked for me!your_WooDness wrote:Hi,
you could try this one:WooDCode: Select all
ffmpeg -i <video_file> -acodec libmp3lame -ar 44100 -ab 128k -ac 2 <mp3_file>