VideoHelp Forum
+ Reply to Thread
Results 1 to 5 of 5
Thread
  1. Is it possible to write a single ffmeg command to change the audio bitrate of an AVI file? Or must I write one line to demux the audio, another to change the bitrate and then a third to remux?

    I keep getting error messages when I try to do it in one line, like this:

    ffmpeg -i input.avi -vcodec copy -ab 192 output.avi

    Any help will be sincerely appreciated.
    Quote Quote  
  2. you forgot to specify -acodec , and the audio bitrate is in "k" units for kbit/s

    assuming you want ac3:

    ffmpeg -i input.avi -vcodec copy -acodec ac3 -ab 192k output.avi
    Quote Quote  
  3. Actually I want to use MP3, which produces an error message "unknown encoder," which I don't understand because the LAME ACM is installed on my PC.
    Quote Quote  
  4. Member
    Join Date
    Jul 2009
    Location
    Spain
    Search Comp PM
    Use -acodec libmp3lame

    ffmpeg does not use installed codecs, only its own built-in ones.
    Quote Quote  
  5. Got it. Working now, thanks.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!