I have some MP3s that are in 48000 Hz sampling frequency. I'd like to burn them to CD, so I have to reduce the sampling frequency into 441000.

How to do that using ffmpeg?

link|improve this question
feedback

1 Answer

ffmpeg doesn't look to be the appropriate tool; I'd normally use sox for audio-only files.

$ sox file1.mpg -r 44100 file1-enc.mpg

If you want to try using ffmpeg anyway, I think the correct command would be something like

$ ffmpeg file1.mpg -ar 44100 file1-enc.mpg
link|improve this answer
Yes sox is much better for audio, thanks for the tip! – Michael Pliskin Jan 4 at 11:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.