How can I convert an ogv file to mp4?Converting a video file in arbitrary file format into MPEG4/H.264?How to convert .mkv file into .mp4 file losslessly?How to convert an ogv video to an wmv video?How can I convert .mp4 files to .3gp using ffmpeg?Convert mkv to mp4 with ffmpegConvert flv video to 3gpHow do I convert image and audio into avi video file?How to simply convert video files (i.e.: MKV to MP4)?How can I convert .264 file to .mp4Convert mp4 to mp3 Using Shell ScriptConvert .h264 to .mp4, with timings

What are the rules for concealing thieves' tools (or items in general)?

Animating wave motion in water

Knife as defense against stray dogs

Recursively updating the MLE as new observations stream in

Symbolism of 18 Journeyers

When did hardware antialiasing start being available?

Why are there no stars visible in cislunar space?

Is there any common country to visit for uk and schengen visa?

How do you justify more code being written by following clean code practices?

How to balance a monster modification (zombie)?

Does fire aspect on a sword, destroy mob drops?

"Marked down as someone wanting to sell shares." What does that mean?

Does convergence of polynomials imply that of its coefficients?

Unfrosted light bulb

Do native speakers use "ultima" and "proxima" frequently in spoken English?

How to understand 「僕は誰より彼女が好きなんだ。」

When should a starting writer get his own webpage?

Is VPN a layer 3 concept?

How are passwords stolen from companies if they only store hashes?

Why didn’t Eve recognize the little cockroach as a living organism?

Can "few" be used as a subject? If so, what is the rule?

Print last inputted byte

What is the difference between something being completely legal and being completely decriminalized?

What is the reasoning behind standardization (dividing by standard deviation)?



How can I convert an ogv file to mp4?


Converting a video file in arbitrary file format into MPEG4/H.264?How to convert .mkv file into .mp4 file losslessly?How to convert an ogv video to an wmv video?How can I convert .mp4 files to .3gp using ffmpeg?Convert mkv to mp4 with ffmpegConvert flv video to 3gpHow do I convert image and audio into avi video file?How to simply convert video files (i.e.: MKV to MP4)?How can I convert .264 file to .mp4Convert mp4 to mp3 Using Shell ScriptConvert .h264 to .mp4, with timings













57















I created a screencast using recordmydesktop which produed a .ogv file. I believe this is an OGG file encoded using the Theora codec. I'm wondering, how can I convert this to MPEG4/H.264? I've tried to use ffmpeg in a naive way, as follows:



ffmpeg -i demo.ogv -f mp4 demo.mp4


However, this produces an evil blob of dark greens and grays when trying to play it again in mplayer. I then tried to get more sophisticated, using the command-line flags specified here: Converting a video file in arbitrary file format into MPEG4/H.264?



ffmpeg -i demo.ogv 
-s 352x288 -vcodec libx264 -vpre default
-acodec libmp3lame -ab 192k -ac 2 -ar 44100 -f mp4
demo.mp4


But, the result was the same.



If anyone has any insight into what might be the best way to accomplish this task, I'd appreciate it if you could let me know.










share|improve this question
























  • Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    – Enissay
    Oct 27 '12 at 2:01











  • Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

    – Eyal Levin
    Feb 19 '14 at 13:53
















57















I created a screencast using recordmydesktop which produed a .ogv file. I believe this is an OGG file encoded using the Theora codec. I'm wondering, how can I convert this to MPEG4/H.264? I've tried to use ffmpeg in a naive way, as follows:



ffmpeg -i demo.ogv -f mp4 demo.mp4


However, this produces an evil blob of dark greens and grays when trying to play it again in mplayer. I then tried to get more sophisticated, using the command-line flags specified here: Converting a video file in arbitrary file format into MPEG4/H.264?



ffmpeg -i demo.ogv 
-s 352x288 -vcodec libx264 -vpre default
-acodec libmp3lame -ab 192k -ac 2 -ar 44100 -f mp4
demo.mp4


But, the result was the same.



If anyone has any insight into what might be the best way to accomplish this task, I'd appreciate it if you could let me know.










share|improve this question
























  • Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    – Enissay
    Oct 27 '12 at 2:01











  • Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

    – Eyal Levin
    Feb 19 '14 at 13:53














57












57








57


15






I created a screencast using recordmydesktop which produed a .ogv file. I believe this is an OGG file encoded using the Theora codec. I'm wondering, how can I convert this to MPEG4/H.264? I've tried to use ffmpeg in a naive way, as follows:



ffmpeg -i demo.ogv -f mp4 demo.mp4


However, this produces an evil blob of dark greens and grays when trying to play it again in mplayer. I then tried to get more sophisticated, using the command-line flags specified here: Converting a video file in arbitrary file format into MPEG4/H.264?



ffmpeg -i demo.ogv 
-s 352x288 -vcodec libx264 -vpre default
-acodec libmp3lame -ab 192k -ac 2 -ar 44100 -f mp4
demo.mp4


But, the result was the same.



If anyone has any insight into what might be the best way to accomplish this task, I'd appreciate it if you could let me know.










share|improve this question
















I created a screencast using recordmydesktop which produed a .ogv file. I believe this is an OGG file encoded using the Theora codec. I'm wondering, how can I convert this to MPEG4/H.264? I've tried to use ffmpeg in a naive way, as follows:



ffmpeg -i demo.ogv -f mp4 demo.mp4


However, this produces an evil blob of dark greens and grays when trying to play it again in mplayer. I then tried to get more sophisticated, using the command-line flags specified here: Converting a video file in arbitrary file format into MPEG4/H.264?



ffmpeg -i demo.ogv 
-s 352x288 -vcodec libx264 -vpre default
-acodec libmp3lame -ab 192k -ac 2 -ar 44100 -f mp4
demo.mp4


But, the result was the same.



If anyone has any insight into what might be the best way to accomplish this task, I'd appreciate it if you could let me know.







ffmpeg codecs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 13 '17 at 12:24









Community

1




1










asked Nov 8 '10 at 21:45









jbeard4jbeard4

5612918




5612918












  • Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    – Enissay
    Oct 27 '12 at 2:01











  • Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

    – Eyal Levin
    Feb 19 '14 at 13:53


















  • Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    – Enissay
    Oct 27 '12 at 2:01











  • Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

    – Eyal Levin
    Feb 19 '14 at 13:53

















Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

– Enissay
Oct 27 '12 at 2:01





Here's a tutorial how to compile ffmpeg x264: ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

– Enissay
Oct 27 '12 at 2:01













Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

– Eyal Levin
Feb 19 '14 at 13:53






Just want to mention that I successfully uploaded an ogv video to Youtube. I guess one could follow that path and then use an online Youtube to mp4 converter.

– Eyal Levin
Feb 19 '14 at 13:53











3 Answers
3






active

oldest

votes


















33















Arista Transcoder Install Arista Transcoder



or from command line



sudo apt-get install arista -y


You can use this software, that I always use and I think it's really good. To convert an ogv file to mp4 you should choose any Sony device.



alt text






share|improve this answer




















  • 1





    This totally did the trick.

    – jbeard4
    Nov 9 '10 at 1:58











  • maybe also mention the Nautilus plugin?

    – Tshepang
    Nov 9 '10 at 23:03











  • @Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

    – DrKenobi
    Nov 10 '10 at 0:42






  • 1





    @Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

    – DrKenobi
    Nov 10 '10 at 2:51






  • 1





    Looks like Arista is no longer available in the repositories :(

    – jrg
    Oct 23 '17 at 15:12


















45














This is an older question now but a modern FFmpeg (under Xenial Xerus and releases following this) would convert an ogv file in the following manner:



ffmpeg -i input.ogv 
-c:v libx264 -preset veryslow -crf 22
-c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100
output.mp4


and this should create an excellent file.



Extra Tweaks:



Some tweaks to these settings are more than possible. Here are some suggestions:



  1. If you wanted a set bitrate for the mp3 sound you would change the setting -qscale:a 2 to the setting -b:a 196k. (Use a higher or lower value for bitrate as you wish.)

  2. If you wanted to get a better quality video output decrease the crf setting to something like: -crf 18. Bear in mind that file size increases as the quality setting is lowered.


  3. Sometimes players such as WMP and Quicktime have trouble with mp3 audio in an mp4 container and in these cases it is sensible to use AAC sound instead:



    ffmpeg -i input.ogv 
    -c:v libx264 -preset veryslow -crf 22
    -c:a aac -b:a 160k -strict -2
    output.mp4


    Newer versions of FFmpeg (i.e. released after December 5th 2015) will not need the -strict -2 option but it is still needed for Xenial Xerus...







share|improve this answer

























  • On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

    – Luís de Sousa
    Apr 28 '15 at 18:38






  • 1





    For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

    – andrew.46
    May 1 '15 at 21:57












  • Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

    – llogan
    Aug 5 '16 at 16:55












  • @LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

    – andrew.46
    Aug 5 '16 at 22:08


















5














FF Multi Converter is another great choice, not only for successful .ogv to .mp4 conversation. Simple, user-friendly and elegant interface, gives a complete log of conversion details, supports a huge list of formats (see below), gets the job done quickly.



enter image description here




Audio/Video formats:



aac, ac3, afc, aiff, amr, asf, au, avi, dvd, flac, flv, mka, mkv, mmf, mov, mp3, mp4, mpg, ogg, ogv, psp, rm, spx, vob, wav, webm, wma, wmv


And any other format supported by ffmpeg.



Image formats:



bmp, cgm, dpx, emf, eps, fpx, gif, jbig, jng, jpeg, mrsid, p7, pdf, picon, png, ppm, psd, rad, tga, tif, webp, xpm


And any other format supported by ImageMagick.



Document file formats:



doc -> odt, pdf
html -> odt
odp -> pdf, ppt
ods -> pdf
odt -> doc, html, pdf, rtf, sxw, txt, xml
ppt -> odp
rtf -> odt
sdw -> odt
sxw -> odt
txt -> odt
xls -> ods
xml -> doc, odt, pdf



Installing on Ubuntu - [Stable release]



To add the ppa to your system resources and install ffmulticonverter, open a terminal and type:




sudo add-apt-repository ppa:ffmulticonverter/stable

sudo apt-get update

sudo apt-get install ffmulticonverter




By default ffmulticonverter will bring all of its optional dependencies (ffmpeg, pythonmagick, unoconv) as well.



If you wish, you can install ffmulticonverter alone and then install only the optional dependencies you like manually:




sudo apt-get install --no-install-recommends ffmulticonverter




Then you can install the rest of the dependencies separately, depending on what you want to convert:



If you wish to convert videos, install ffmpeg: sudo apt-get install ffmpeg

If you wish to convert documents, install unoconv: sudo apt-get install unoconv

If you wish to convert images, install python imagemagick: sudo apt-get install python-pythonmagick






share|improve this answer




















  • 1





    This was an excellent program, with up to date version in RPM Fusion repo.

    – hlovdal
    May 9 '17 at 20:14









protected by Community Apr 18 '14 at 12:55



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?














3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









33















Arista Transcoder Install Arista Transcoder



or from command line



sudo apt-get install arista -y


You can use this software, that I always use and I think it's really good. To convert an ogv file to mp4 you should choose any Sony device.



alt text






share|improve this answer




















  • 1





    This totally did the trick.

    – jbeard4
    Nov 9 '10 at 1:58











  • maybe also mention the Nautilus plugin?

    – Tshepang
    Nov 9 '10 at 23:03











  • @Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

    – DrKenobi
    Nov 10 '10 at 0:42






  • 1





    @Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

    – DrKenobi
    Nov 10 '10 at 2:51






  • 1





    Looks like Arista is no longer available in the repositories :(

    – jrg
    Oct 23 '17 at 15:12















33















Arista Transcoder Install Arista Transcoder



or from command line



sudo apt-get install arista -y


You can use this software, that I always use and I think it's really good. To convert an ogv file to mp4 you should choose any Sony device.



alt text






share|improve this answer




















  • 1





    This totally did the trick.

    – jbeard4
    Nov 9 '10 at 1:58











  • maybe also mention the Nautilus plugin?

    – Tshepang
    Nov 9 '10 at 23:03











  • @Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

    – DrKenobi
    Nov 10 '10 at 0:42






  • 1





    @Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

    – DrKenobi
    Nov 10 '10 at 2:51






  • 1





    Looks like Arista is no longer available in the repositories :(

    – jrg
    Oct 23 '17 at 15:12













33












33








33








Arista Transcoder Install Arista Transcoder



or from command line



sudo apt-get install arista -y


You can use this software, that I always use and I think it's really good. To convert an ogv file to mp4 you should choose any Sony device.



alt text






share|improve this answer
















Arista Transcoder Install Arista Transcoder



or from command line



sudo apt-get install arista -y


You can use this software, that I always use and I think it's really good. To convert an ogv file to mp4 you should choose any Sony device.



alt text







share|improve this answer














share|improve this answer



share|improve this answer








edited May 15 '17 at 18:16









Anwar

57k22148255




57k22148255










answered Nov 8 '10 at 21:53









DrKenobiDrKenobi

4,75732025




4,75732025







  • 1





    This totally did the trick.

    – jbeard4
    Nov 9 '10 at 1:58











  • maybe also mention the Nautilus plugin?

    – Tshepang
    Nov 9 '10 at 23:03











  • @Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

    – DrKenobi
    Nov 10 '10 at 0:42






  • 1





    @Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

    – DrKenobi
    Nov 10 '10 at 2:51






  • 1





    Looks like Arista is no longer available in the repositories :(

    – jrg
    Oct 23 '17 at 15:12












  • 1





    This totally did the trick.

    – jbeard4
    Nov 9 '10 at 1:58











  • maybe also mention the Nautilus plugin?

    – Tshepang
    Nov 9 '10 at 23:03











  • @Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

    – DrKenobi
    Nov 10 '10 at 0:42






  • 1





    @Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

    – DrKenobi
    Nov 10 '10 at 2:51






  • 1





    Looks like Arista is no longer available in the repositories :(

    – jrg
    Oct 23 '17 at 15:12







1




1





This totally did the trick.

– jbeard4
Nov 9 '10 at 1:58





This totally did the trick.

– jbeard4
Nov 9 '10 at 1:58













maybe also mention the Nautilus plugin?

– Tshepang
Nov 9 '10 at 23:03





maybe also mention the Nautilus plugin?

– Tshepang
Nov 9 '10 at 23:03













@Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

– DrKenobi
Nov 10 '10 at 0:42





@Tshepang, I've never used the Nautilus plugin. How is it called? I want to try it now!

– DrKenobi
Nov 10 '10 at 0:42




1




1





@Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

– DrKenobi
Nov 10 '10 at 2:51





@Tshepang, I can't try it now :( I'm using 10.04 LTS and the plugin is available for 10.10 and 11.04. I'll have to wait for my new laptop to try it. Thanks for the info!

– DrKenobi
Nov 10 '10 at 2:51




1




1





Looks like Arista is no longer available in the repositories :(

– jrg
Oct 23 '17 at 15:12





Looks like Arista is no longer available in the repositories :(

– jrg
Oct 23 '17 at 15:12













45














This is an older question now but a modern FFmpeg (under Xenial Xerus and releases following this) would convert an ogv file in the following manner:



ffmpeg -i input.ogv 
-c:v libx264 -preset veryslow -crf 22
-c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100
output.mp4


and this should create an excellent file.



Extra Tweaks:



Some tweaks to these settings are more than possible. Here are some suggestions:



  1. If you wanted a set bitrate for the mp3 sound you would change the setting -qscale:a 2 to the setting -b:a 196k. (Use a higher or lower value for bitrate as you wish.)

  2. If you wanted to get a better quality video output decrease the crf setting to something like: -crf 18. Bear in mind that file size increases as the quality setting is lowered.


  3. Sometimes players such as WMP and Quicktime have trouble with mp3 audio in an mp4 container and in these cases it is sensible to use AAC sound instead:



    ffmpeg -i input.ogv 
    -c:v libx264 -preset veryslow -crf 22
    -c:a aac -b:a 160k -strict -2
    output.mp4


    Newer versions of FFmpeg (i.e. released after December 5th 2015) will not need the -strict -2 option but it is still needed for Xenial Xerus...







share|improve this answer

























  • On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

    – Luís de Sousa
    Apr 28 '15 at 18:38






  • 1





    For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

    – andrew.46
    May 1 '15 at 21:57












  • Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

    – llogan
    Aug 5 '16 at 16:55












  • @LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

    – andrew.46
    Aug 5 '16 at 22:08















45














This is an older question now but a modern FFmpeg (under Xenial Xerus and releases following this) would convert an ogv file in the following manner:



ffmpeg -i input.ogv 
-c:v libx264 -preset veryslow -crf 22
-c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100
output.mp4


and this should create an excellent file.



Extra Tweaks:



Some tweaks to these settings are more than possible. Here are some suggestions:



  1. If you wanted a set bitrate for the mp3 sound you would change the setting -qscale:a 2 to the setting -b:a 196k. (Use a higher or lower value for bitrate as you wish.)

  2. If you wanted to get a better quality video output decrease the crf setting to something like: -crf 18. Bear in mind that file size increases as the quality setting is lowered.


  3. Sometimes players such as WMP and Quicktime have trouble with mp3 audio in an mp4 container and in these cases it is sensible to use AAC sound instead:



    ffmpeg -i input.ogv 
    -c:v libx264 -preset veryslow -crf 22
    -c:a aac -b:a 160k -strict -2
    output.mp4


    Newer versions of FFmpeg (i.e. released after December 5th 2015) will not need the -strict -2 option but it is still needed for Xenial Xerus...







share|improve this answer

























  • On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

    – Luís de Sousa
    Apr 28 '15 at 18:38






  • 1





    For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

    – andrew.46
    May 1 '15 at 21:57












  • Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

    – llogan
    Aug 5 '16 at 16:55












  • @LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

    – andrew.46
    Aug 5 '16 at 22:08













45












45








45







This is an older question now but a modern FFmpeg (under Xenial Xerus and releases following this) would convert an ogv file in the following manner:



ffmpeg -i input.ogv 
-c:v libx264 -preset veryslow -crf 22
-c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100
output.mp4


and this should create an excellent file.



Extra Tweaks:



Some tweaks to these settings are more than possible. Here are some suggestions:



  1. If you wanted a set bitrate for the mp3 sound you would change the setting -qscale:a 2 to the setting -b:a 196k. (Use a higher or lower value for bitrate as you wish.)

  2. If you wanted to get a better quality video output decrease the crf setting to something like: -crf 18. Bear in mind that file size increases as the quality setting is lowered.


  3. Sometimes players such as WMP and Quicktime have trouble with mp3 audio in an mp4 container and in these cases it is sensible to use AAC sound instead:



    ffmpeg -i input.ogv 
    -c:v libx264 -preset veryslow -crf 22
    -c:a aac -b:a 160k -strict -2
    output.mp4


    Newer versions of FFmpeg (i.e. released after December 5th 2015) will not need the -strict -2 option but it is still needed for Xenial Xerus...







share|improve this answer















This is an older question now but a modern FFmpeg (under Xenial Xerus and releases following this) would convert an ogv file in the following manner:



ffmpeg -i input.ogv 
-c:v libx264 -preset veryslow -crf 22
-c:a libmp3lame -qscale:a 2 -ac 2 -ar 44100
output.mp4


and this should create an excellent file.



Extra Tweaks:



Some tweaks to these settings are more than possible. Here are some suggestions:



  1. If you wanted a set bitrate for the mp3 sound you would change the setting -qscale:a 2 to the setting -b:a 196k. (Use a higher or lower value for bitrate as you wish.)

  2. If you wanted to get a better quality video output decrease the crf setting to something like: -crf 18. Bear in mind that file size increases as the quality setting is lowered.


  3. Sometimes players such as WMP and Quicktime have trouble with mp3 audio in an mp4 container and in these cases it is sensible to use AAC sound instead:



    ffmpeg -i input.ogv 
    -c:v libx264 -preset veryslow -crf 22
    -c:a aac -b:a 160k -strict -2
    output.mp4


    Newer versions of FFmpeg (i.e. released after December 5th 2015) will not need the -strict -2 option but it is still needed for Xenial Xerus...








share|improve this answer














share|improve this answer



share|improve this answer








edited 17 mins ago

























answered May 22 '14 at 6:17









andrew.46andrew.46

22.2k1469150




22.2k1469150












  • On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

    – Luís de Sousa
    Apr 28 '15 at 18:38






  • 1





    For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

    – andrew.46
    May 1 '15 at 21:57












  • Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

    – llogan
    Aug 5 '16 at 16:55












  • @LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

    – andrew.46
    Aug 5 '16 at 22:08

















  • On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

    – Luís de Sousa
    Apr 28 '15 at 18:38






  • 1





    For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

    – andrew.46
    May 1 '15 at 21:57












  • Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

    – llogan
    Aug 5 '16 at 16:55












  • @LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

    – andrew.46
    Aug 5 '16 at 22:08
















On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

– Luís de Sousa
Apr 28 '15 at 18:38





On Ubuntu 14.04 this command fails with the error message: Invalid encoder type 'libmp3lame'.

– Luís de Sousa
Apr 28 '15 at 18:38




1




1





For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

– andrew.46
May 1 '15 at 21:57






For 14.04 try installing libavcodec-extra-54 and this should fix the issue... If compiling you will need the -dev file for lame: libmp3lame-dev.

– andrew.46
May 1 '15 at 21:57














Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

– llogan
Aug 5 '16 at 16:55






Some players, such as WMP and QuickTime, have trouble decoding some MP4 files that use MP3 audio (for WMP it depends on audio sample rate).

– llogan
Aug 5 '16 at 16:55














@LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

– andrew.46
Aug 5 '16 at 22:08





@LordNeckbeard Thanks for the tip, I have updated the answer, feel free to correct anything in it :)

– andrew.46
Aug 5 '16 at 22:08











5














FF Multi Converter is another great choice, not only for successful .ogv to .mp4 conversation. Simple, user-friendly and elegant interface, gives a complete log of conversion details, supports a huge list of formats (see below), gets the job done quickly.



enter image description here




Audio/Video formats:



aac, ac3, afc, aiff, amr, asf, au, avi, dvd, flac, flv, mka, mkv, mmf, mov, mp3, mp4, mpg, ogg, ogv, psp, rm, spx, vob, wav, webm, wma, wmv


And any other format supported by ffmpeg.



Image formats:



bmp, cgm, dpx, emf, eps, fpx, gif, jbig, jng, jpeg, mrsid, p7, pdf, picon, png, ppm, psd, rad, tga, tif, webp, xpm


And any other format supported by ImageMagick.



Document file formats:



doc -> odt, pdf
html -> odt
odp -> pdf, ppt
ods -> pdf
odt -> doc, html, pdf, rtf, sxw, txt, xml
ppt -> odp
rtf -> odt
sdw -> odt
sxw -> odt
txt -> odt
xls -> ods
xml -> doc, odt, pdf



Installing on Ubuntu - [Stable release]



To add the ppa to your system resources and install ffmulticonverter, open a terminal and type:




sudo add-apt-repository ppa:ffmulticonverter/stable

sudo apt-get update

sudo apt-get install ffmulticonverter




By default ffmulticonverter will bring all of its optional dependencies (ffmpeg, pythonmagick, unoconv) as well.



If you wish, you can install ffmulticonverter alone and then install only the optional dependencies you like manually:




sudo apt-get install --no-install-recommends ffmulticonverter




Then you can install the rest of the dependencies separately, depending on what you want to convert:



If you wish to convert videos, install ffmpeg: sudo apt-get install ffmpeg

If you wish to convert documents, install unoconv: sudo apt-get install unoconv

If you wish to convert images, install python imagemagick: sudo apt-get install python-pythonmagick






share|improve this answer




















  • 1





    This was an excellent program, with up to date version in RPM Fusion repo.

    – hlovdal
    May 9 '17 at 20:14















5














FF Multi Converter is another great choice, not only for successful .ogv to .mp4 conversation. Simple, user-friendly and elegant interface, gives a complete log of conversion details, supports a huge list of formats (see below), gets the job done quickly.



enter image description here




Audio/Video formats:



aac, ac3, afc, aiff, amr, asf, au, avi, dvd, flac, flv, mka, mkv, mmf, mov, mp3, mp4, mpg, ogg, ogv, psp, rm, spx, vob, wav, webm, wma, wmv


And any other format supported by ffmpeg.



Image formats:



bmp, cgm, dpx, emf, eps, fpx, gif, jbig, jng, jpeg, mrsid, p7, pdf, picon, png, ppm, psd, rad, tga, tif, webp, xpm


And any other format supported by ImageMagick.



Document file formats:



doc -> odt, pdf
html -> odt
odp -> pdf, ppt
ods -> pdf
odt -> doc, html, pdf, rtf, sxw, txt, xml
ppt -> odp
rtf -> odt
sdw -> odt
sxw -> odt
txt -> odt
xls -> ods
xml -> doc, odt, pdf



Installing on Ubuntu - [Stable release]



To add the ppa to your system resources and install ffmulticonverter, open a terminal and type:




sudo add-apt-repository ppa:ffmulticonverter/stable

sudo apt-get update

sudo apt-get install ffmulticonverter




By default ffmulticonverter will bring all of its optional dependencies (ffmpeg, pythonmagick, unoconv) as well.



If you wish, you can install ffmulticonverter alone and then install only the optional dependencies you like manually:




sudo apt-get install --no-install-recommends ffmulticonverter




Then you can install the rest of the dependencies separately, depending on what you want to convert:



If you wish to convert videos, install ffmpeg: sudo apt-get install ffmpeg

If you wish to convert documents, install unoconv: sudo apt-get install unoconv

If you wish to convert images, install python imagemagick: sudo apt-get install python-pythonmagick






share|improve this answer




















  • 1





    This was an excellent program, with up to date version in RPM Fusion repo.

    – hlovdal
    May 9 '17 at 20:14













5












5








5







FF Multi Converter is another great choice, not only for successful .ogv to .mp4 conversation. Simple, user-friendly and elegant interface, gives a complete log of conversion details, supports a huge list of formats (see below), gets the job done quickly.



enter image description here




Audio/Video formats:



aac, ac3, afc, aiff, amr, asf, au, avi, dvd, flac, flv, mka, mkv, mmf, mov, mp3, mp4, mpg, ogg, ogv, psp, rm, spx, vob, wav, webm, wma, wmv


And any other format supported by ffmpeg.



Image formats:



bmp, cgm, dpx, emf, eps, fpx, gif, jbig, jng, jpeg, mrsid, p7, pdf, picon, png, ppm, psd, rad, tga, tif, webp, xpm


And any other format supported by ImageMagick.



Document file formats:



doc -> odt, pdf
html -> odt
odp -> pdf, ppt
ods -> pdf
odt -> doc, html, pdf, rtf, sxw, txt, xml
ppt -> odp
rtf -> odt
sdw -> odt
sxw -> odt
txt -> odt
xls -> ods
xml -> doc, odt, pdf



Installing on Ubuntu - [Stable release]



To add the ppa to your system resources and install ffmulticonverter, open a terminal and type:




sudo add-apt-repository ppa:ffmulticonverter/stable

sudo apt-get update

sudo apt-get install ffmulticonverter




By default ffmulticonverter will bring all of its optional dependencies (ffmpeg, pythonmagick, unoconv) as well.



If you wish, you can install ffmulticonverter alone and then install only the optional dependencies you like manually:




sudo apt-get install --no-install-recommends ffmulticonverter




Then you can install the rest of the dependencies separately, depending on what you want to convert:



If you wish to convert videos, install ffmpeg: sudo apt-get install ffmpeg

If you wish to convert documents, install unoconv: sudo apt-get install unoconv

If you wish to convert images, install python imagemagick: sudo apt-get install python-pythonmagick






share|improve this answer















FF Multi Converter is another great choice, not only for successful .ogv to .mp4 conversation. Simple, user-friendly and elegant interface, gives a complete log of conversion details, supports a huge list of formats (see below), gets the job done quickly.



enter image description here




Audio/Video formats:



aac, ac3, afc, aiff, amr, asf, au, avi, dvd, flac, flv, mka, mkv, mmf, mov, mp3, mp4, mpg, ogg, ogv, psp, rm, spx, vob, wav, webm, wma, wmv


And any other format supported by ffmpeg.



Image formats:



bmp, cgm, dpx, emf, eps, fpx, gif, jbig, jng, jpeg, mrsid, p7, pdf, picon, png, ppm, psd, rad, tga, tif, webp, xpm


And any other format supported by ImageMagick.



Document file formats:



doc -> odt, pdf
html -> odt
odp -> pdf, ppt
ods -> pdf
odt -> doc, html, pdf, rtf, sxw, txt, xml
ppt -> odp
rtf -> odt
sdw -> odt
sxw -> odt
txt -> odt
xls -> ods
xml -> doc, odt, pdf



Installing on Ubuntu - [Stable release]



To add the ppa to your system resources and install ffmulticonverter, open a terminal and type:




sudo add-apt-repository ppa:ffmulticonverter/stable

sudo apt-get update

sudo apt-get install ffmulticonverter




By default ffmulticonverter will bring all of its optional dependencies (ffmpeg, pythonmagick, unoconv) as well.



If you wish, you can install ffmulticonverter alone and then install only the optional dependencies you like manually:




sudo apt-get install --no-install-recommends ffmulticonverter




Then you can install the rest of the dependencies separately, depending on what you want to convert:



If you wish to convert videos, install ffmpeg: sudo apt-get install ffmpeg

If you wish to convert documents, install unoconv: sudo apt-get install unoconv

If you wish to convert images, install python imagemagick: sudo apt-get install python-pythonmagick







share|improve this answer














share|improve this answer



share|improve this answer








edited May 24 '14 at 3:55

























answered Feb 19 '14 at 15:46









v2rv2r

6,429113948




6,429113948







  • 1





    This was an excellent program, with up to date version in RPM Fusion repo.

    – hlovdal
    May 9 '17 at 20:14












  • 1





    This was an excellent program, with up to date version in RPM Fusion repo.

    – hlovdal
    May 9 '17 at 20:14







1




1





This was an excellent program, with up to date version in RPM Fusion repo.

– hlovdal
May 9 '17 at 20:14





This was an excellent program, with up to date version in RPM Fusion repo.

– hlovdal
May 9 '17 at 20:14





protected by Community Apr 18 '14 at 12:55



Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?



Popular posts from this blog

Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»