Extracting audio as MP3 from video files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • O-pos
    Gold Member
    Gold Member
    • Dec 2005
    • 125

    Extracting audio as MP3 from video files

    Hello,

    I have video lessons from that I would like to extract audio as mp3 files to be able to play them on my iPod. How is it possible?

    The fideo files are avi ones, but I don't know how the audio is encoded.

    I would like to use mencoder for that, if it's possible.

    Any ideas?
  • paglamon
    Lord of Digital Video
    Lord of Digital Video
    • Aug 2005
    • 2126

    #2
    Try AVIMuxGUI.
    sigpic

    ONLY MOMENTS LINGER...DEWDROPS ON A FALLEN LEAF

    Comment

    • anonymez
      Super Moderator
      • Mar 2004
      • 5525

      #3
      Mencoder does not handle audio nearly as well as ffmpeg.

      If the audio is already mp3, try a

      Code:
      ffmpeg -i '/path/to/file' -vn -acodec copy '/path/to/output.mp3'
      otherwise, encode to aac mp4:

      Code:
      ffmpeg -i '/path/to/file' -vn -acodec mpeg4aac -ab 96000 '/path/to/output.mp4'
      Where "ab" is the bitrate in bps.

      And I think AVI-Mux GUI works under Wine.
      "What were the things in Gremlins called?" - Karl Pilkington

      Comment

      Working...