Extract Audio from .AVI video to an .MP3 file in Linux with FFMPEG:


Extract Audio/Music from .AVI video to an .MP3 file in Linux with FFMPEG:

$ ffmpeg -i input.avi -vn -ar 44100 -ac 2 -ab 320k -f mp3 output.mp3

*NOTES:
- Where input is the source file and output the outcome file.
- the $ sign at the start of the command is to signify the terminal's prompt, no need to type this in.

0 comments:

Post a Comment