GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
Video Audio Extract |
20200806 To extract the audio track from a video file it is as easy as asking ffmpeg to convert the video into a audio file format:
$ ffmpeg -i myvid.mp4 myvid.mp3 |
-i
specifies the input file. By default the file name
provided to ffmpeg is the output file.