ffmpeg - Split sounds from video files and store it as mp3
by barkkathulla[ Edit ] 2014-03-15 20:08:19
Using ffmpeg you can extract sounds from videos and can conver avi into mp3 format
Example1:
ffmpeg -i given_files.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 source.mp3
From the above example1,(extract sounds from videos)
Source video : given_files.avi
Generated sound : source.mp3
Audio bitrate : 192kb/s
output format : mp3
Example2:
ffmpeg -i input_files.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 my_fancy.mp3
From the above example2,(avi to mp3 conversion)
Source video : input_files.avi
Generated sound : my_fancy.mp3
Audio bitrate : 192kb/s
output format : mp3