Converting mp4 to mp3
Posted
by
aki
on Ask Ubuntu
See other posts from Ask Ubuntu
or by aki
Published on 2011-12-02T13:14:31Z
Indexed on
2012/12/07
5:22 UTC
Read the original article
Hit count: 270
I have a video I need to convert to mp3 (from the command line - not GUI)
video.mp4
I tried:
ffmpeg -i -b 192 video.mp4 video.mp3
with no success. I get the following error:
WARNING: library configuration mismatch
Seems stream 0 codec frame rate differs from container frame rate: 59.83 (29917/500) -> 59.75 (239/4)
WARNING: The bitrate parameter is set too low. It takes bits/s as argument, not kbits/s
Encoder (codec id 86017) not found for output stream #0.0
so I tried lame:
lame -h -b 192 video.mp4 video.mp3
I get:
Warning: unsupported audio format
Am I missing something?
© Ask Ubuntu or respective owner