I want to convert a whole folder of mp4 files to mp3. But I have no idea how to do that? But I want to keep the thumbnail. Can anyone help me?
Asked
Active
Viewed 8,618 times
1 Answers
5
You don't need to do this in three steps:
ffmpeg -vn -sn -dn -i input.mp4 -codec:a libmp3lame -qscale:a 4 output.mp3
This creates a MP3 file with a VBR (variable bit rate) of 165. Check here for more options.
Arguments (beware, the order matters!):
-vndisables all video-streams from the input-sndisables all subtitle-streams from the input-dndisables all data-streams from the input-ispecifies the input file-codec:a libmp3lamespecifies the encoder-qscale:a 4specifies the quality target for libmp3lame- The last argument is the output-file. Note that the file-extension might be used to infer additional information.
Lukas Knuth
- 245