Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

fastest way to convert any audio file to low bitrate?

Writer Sebastian Wright

Using ffmpeg I'd like to have some directions/parameters to:

  • encode any audio file to a poor bitrate
  • strip artwork from file
  • optimize for speed
  • optimize for size

My goal is to have a bare-bone file encoded in mp3 in the fastest time possible, quality does not matter (even 96kbps or less), it just needs to be extremely fast.

2

2 Answers

ffmpeg -i input.file -map 0:a:0 -b:a 96k output.mp3

...will convert any file with audio into a Constant Bit Rate MP3 @ 96 kbit/s. Music files normally store cover images as a video stream, which will be stripped by this command; M4A files do this differently, but ffmpeg is currently not able to access that data, so it will be stripped whatever you do. This will also select the first audio stream, if there are multiple audio streams.

CBR mode should be faster than VBR, and using a low bit rate should be faster than a higher one.

Of course, file size can be easily calculated from the bit rate. A one-minute CBR MP3 @96 kbit/s will have a file size of 60s*96000bit/s=5760000 bit, /8192=703.125 KB.

4

One method:

ffmpeg -i in.mp3 -b:a 96k -map a out.mp3

-map a strips artwork.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy