Glam Prestige Journal

Bright entertainment trends with youth appeal.

On my desktop Ubuntu 10.4 I use ffmpeg to convert videos to a format my dvd-player understands. On my laptop running 10.10 I can't get the same command to work, what package(s) are missing?

ffmpeg -i infile.flv \
-threads 2 -vcodec mpeg4 -vtag divx -acodec libmp3lame \
outfile.avi
#...snip
Unknown encoder 'libmp3lame'

Using apt-cache search libmp3lame I'm told there exist libmp3lame0 and libmp3lame-dev, both of which I've installed. Using acodec libmp3lame0 doesn't work either.

2

3 Answers

sudo apt-get install ffmpeg libavcodec-extra-52

If package not found try:

sudo apt-get install ffmpeg libavcodec-extra-53

you can also try to install the libmp3lame0 package:

sudo apt-get install libmp3lame0
1

Install the encoder by running he following command

sudo apt-get install libavcodec-extra-53

Try this, Open Synaptic Package Manager and reinstall ffmpeg. Also try installing winff in Synaptic, this will give you a GUI for ffmpeg. Edit... See also about adding "libavcodec-extra-52, libavutil-extra-49 and libavformat-extra-52 from the multiverse repository"

1

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