Converting .mov files to .mp4 using ffmpegHow do I use ffmpeg's “-vf” / “-vfilters” option without recompiling ffmpeg myself?How do I uninstall ffmpeg?Add image to 3GP file and convert it to MP4 using avconv por ffmpegHow can I burn vobsub subtitles using ffmpeg?Install ffmpeg in Ubuntu 12.04 LTSffmpeg: command not foundUpgrade already installed ffmpeg software on ubuntu serverhow to get vdpau hardware acceleration using ffmpeg on ubuntu?Error With Shared Libraries: FFMPEGHow to rollback ffmpeg version to desired version? Is rollback needed in this scenario?

Lowest total scrabble score

Pre-mixing cryogenic fuels and using only one fuel tank

Why does the Sun have different day lengths, but not the gas giants?

The screen of my macbook suddenly broken down how can I do to recover

Has any country ever had 2 former presidents in jail simultaneously?

Removing files under particular conditions (number of files, file age)

Why electric field inside a cavity of a non-conducting sphere not zero?

250 Floor Tower

How to implement a feedback to keep the DC gain at zero for this conceptual passive filter?

What are the purposes of autoencoders?

Longest common substring in linear time

Why is it that I can sometimes guess the next note?

Not using 's' for he/she/it

On a tidally locked planet, would time be quantized?

How to bake one texture for one mesh with multiple textures blender 2.8

Why Shazam when there is already Superman?

How can "mimic phobia" be cured or prevented?

Creepy dinosaur pc game identification

Did arcade monitors have same pixel aspect ratio as TV sets?

Energy measurement from position eigenstate

Count the occurrence of each unique word in the file

Open a doc from terminal, but not by its name

If infinitesimal transformations commute why dont the generators of the Lorentz group commute?

Does a 'pending' US visa application constitute a denial?



Converting .mov files to .mp4 using ffmpeg


How do I use ffmpeg's “-vf” / “-vfilters” option without recompiling ffmpeg myself?How do I uninstall ffmpeg?Add image to 3GP file and convert it to MP4 using avconv por ffmpegHow can I burn vobsub subtitles using ffmpeg?Install ffmpeg in Ubuntu 12.04 LTSffmpeg: command not foundUpgrade already installed ffmpeg software on ubuntu serverhow to get vdpau hardware acceleration using ffmpeg on ubuntu?Error With Shared Libraries: FFMPEGHow to rollback ffmpeg version to desired version? Is rollback needed in this scenario?













7















The conversion answers that I have seen on the web suggest using a -c option in the command line using ffmpeg. However using Ubuntu 14.04 the -c option does not exist in ffmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1. Is there a newer version. If so how can I get it. Using apt-get, it says that this is the newest version.










share|improve this question


























    7















    The conversion answers that I have seen on the web suggest using a -c option in the command line using ffmpeg. However using Ubuntu 14.04 the -c option does not exist in ffmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1. Is there a newer version. If so how can I get it. Using apt-get, it says that this is the newest version.










    share|improve this question
























      7












      7








      7


      2






      The conversion answers that I have seen on the web suggest using a -c option in the command line using ffmpeg. However using Ubuntu 14.04 the -c option does not exist in ffmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1. Is there a newer version. If so how can I get it. Using apt-get, it says that this is the newest version.










      share|improve this question














      The conversion answers that I have seen on the web suggest using a -c option in the command line using ffmpeg. However using Ubuntu 14.04 the -c option does not exist in ffmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1. Is there a newer version. If so how can I get it. Using apt-get, it says that this is the newest version.







      ffmpeg






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 5 '16 at 15:48









      RoadrawtsRoadrawts

      36112




      36112




















          2 Answers
          2






          active

          oldest

          votes


















          5














          Unfortunately Ubuntu 14.04 does not have FFmpeg at all in the standard repositories, an issue that has been rectified in subsequent Ubuntu releases. If you are keen to use default 14.04 offerings you would be using avconv from libav-tools. Use the following:



          sudo apt-get install libav-tools libavcodec-extra-54


          And then to simply change containers from mov to mp4:



          avconv -i input.mov -codec copy output.mp4


          If you would prefer a modern version of FFmpeg that fits in well with Trusty Tahr 14.04 (and I would recommend this path) there are 2 good choices:



          1. Use Doug McMahon's great Trusty Multimedia PPA

          2. Compile your own bleeding edge FFmpeg from FFmpeg trac instructions

          Lots of good choices! For FFmpeg the command line is only slightly different:



          ffmpeg -i input.mov -codec copy output.mp4


          And that should solve your issue...






          share|improve this answer

























          • Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

            – DK Bose
            Mar 6 '16 at 1:41






          • 1





            Indeed another great choice that I shall add in to my answer....

            – andrew.46
            Mar 6 '16 at 1:44


















          0














          For Ubuntu 16 (and higher?):



          ffmpeg -i input.mov -vcodec h264 -acodec mp2 output.mp4


          I realize the question referred to Ubuntu 14. But since this is the top Google result I got when searching "mov to mp4 ubuntu", I figure it would be worth adding here.



          Source: https://mrcoles.com/convert-mov-mp4-ffmpeg/





          share






















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "89"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f742426%2fconverting-mov-files-to-mp4-using-ffmpeg%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            Unfortunately Ubuntu 14.04 does not have FFmpeg at all in the standard repositories, an issue that has been rectified in subsequent Ubuntu releases. If you are keen to use default 14.04 offerings you would be using avconv from libav-tools. Use the following:



            sudo apt-get install libav-tools libavcodec-extra-54


            And then to simply change containers from mov to mp4:



            avconv -i input.mov -codec copy output.mp4


            If you would prefer a modern version of FFmpeg that fits in well with Trusty Tahr 14.04 (and I would recommend this path) there are 2 good choices:



            1. Use Doug McMahon's great Trusty Multimedia PPA

            2. Compile your own bleeding edge FFmpeg from FFmpeg trac instructions

            Lots of good choices! For FFmpeg the command line is only slightly different:



            ffmpeg -i input.mov -codec copy output.mp4


            And that should solve your issue...






            share|improve this answer

























            • Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

              – DK Bose
              Mar 6 '16 at 1:41






            • 1





              Indeed another great choice that I shall add in to my answer....

              – andrew.46
              Mar 6 '16 at 1:44















            5














            Unfortunately Ubuntu 14.04 does not have FFmpeg at all in the standard repositories, an issue that has been rectified in subsequent Ubuntu releases. If you are keen to use default 14.04 offerings you would be using avconv from libav-tools. Use the following:



            sudo apt-get install libav-tools libavcodec-extra-54


            And then to simply change containers from mov to mp4:



            avconv -i input.mov -codec copy output.mp4


            If you would prefer a modern version of FFmpeg that fits in well with Trusty Tahr 14.04 (and I would recommend this path) there are 2 good choices:



            1. Use Doug McMahon's great Trusty Multimedia PPA

            2. Compile your own bleeding edge FFmpeg from FFmpeg trac instructions

            Lots of good choices! For FFmpeg the command line is only slightly different:



            ffmpeg -i input.mov -codec copy output.mp4


            And that should solve your issue...






            share|improve this answer

























            • Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

              – DK Bose
              Mar 6 '16 at 1:41






            • 1





              Indeed another great choice that I shall add in to my answer....

              – andrew.46
              Mar 6 '16 at 1:44













            5












            5








            5







            Unfortunately Ubuntu 14.04 does not have FFmpeg at all in the standard repositories, an issue that has been rectified in subsequent Ubuntu releases. If you are keen to use default 14.04 offerings you would be using avconv from libav-tools. Use the following:



            sudo apt-get install libav-tools libavcodec-extra-54


            And then to simply change containers from mov to mp4:



            avconv -i input.mov -codec copy output.mp4


            If you would prefer a modern version of FFmpeg that fits in well with Trusty Tahr 14.04 (and I would recommend this path) there are 2 good choices:



            1. Use Doug McMahon's great Trusty Multimedia PPA

            2. Compile your own bleeding edge FFmpeg from FFmpeg trac instructions

            Lots of good choices! For FFmpeg the command line is only slightly different:



            ffmpeg -i input.mov -codec copy output.mp4


            And that should solve your issue...






            share|improve this answer















            Unfortunately Ubuntu 14.04 does not have FFmpeg at all in the standard repositories, an issue that has been rectified in subsequent Ubuntu releases. If you are keen to use default 14.04 offerings you would be using avconv from libav-tools. Use the following:



            sudo apt-get install libav-tools libavcodec-extra-54


            And then to simply change containers from mov to mp4:



            avconv -i input.mov -codec copy output.mp4


            If you would prefer a modern version of FFmpeg that fits in well with Trusty Tahr 14.04 (and I would recommend this path) there are 2 good choices:



            1. Use Doug McMahon's great Trusty Multimedia PPA

            2. Compile your own bleeding edge FFmpeg from FFmpeg trac instructions

            Lots of good choices! For FFmpeg the command line is only slightly different:



            ffmpeg -i input.mov -codec copy output.mp4


            And that should solve your issue...







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 22 '16 at 21:43

























            answered Mar 6 '16 at 0:10









            andrew.46andrew.46

            22.2k1470150




            22.2k1470150












            • Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

              – DK Bose
              Mar 6 '16 at 1:41






            • 1





              Indeed another great choice that I shall add in to my answer....

              – andrew.46
              Mar 6 '16 at 1:44

















            • Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

              – DK Bose
              Mar 6 '16 at 1:41






            • 1





              Indeed another great choice that I shall add in to my answer....

              – andrew.46
              Mar 6 '16 at 1:44
















            Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

            – DK Bose
            Mar 6 '16 at 1:41





            Instead of compiling, what about deb http://ppa.launchpad.net/mc3man/trusty-media/ubuntu trusty main?

            – DK Bose
            Mar 6 '16 at 1:41




            1




            1





            Indeed another great choice that I shall add in to my answer....

            – andrew.46
            Mar 6 '16 at 1:44





            Indeed another great choice that I shall add in to my answer....

            – andrew.46
            Mar 6 '16 at 1:44













            0














            For Ubuntu 16 (and higher?):



            ffmpeg -i input.mov -vcodec h264 -acodec mp2 output.mp4


            I realize the question referred to Ubuntu 14. But since this is the top Google result I got when searching "mov to mp4 ubuntu", I figure it would be worth adding here.



            Source: https://mrcoles.com/convert-mov-mp4-ffmpeg/





            share



























              0














              For Ubuntu 16 (and higher?):



              ffmpeg -i input.mov -vcodec h264 -acodec mp2 output.mp4


              I realize the question referred to Ubuntu 14. But since this is the top Google result I got when searching "mov to mp4 ubuntu", I figure it would be worth adding here.



              Source: https://mrcoles.com/convert-mov-mp4-ffmpeg/





              share

























                0












                0








                0







                For Ubuntu 16 (and higher?):



                ffmpeg -i input.mov -vcodec h264 -acodec mp2 output.mp4


                I realize the question referred to Ubuntu 14. But since this is the top Google result I got when searching "mov to mp4 ubuntu", I figure it would be worth adding here.



                Source: https://mrcoles.com/convert-mov-mp4-ffmpeg/





                share













                For Ubuntu 16 (and higher?):



                ffmpeg -i input.mov -vcodec h264 -acodec mp2 output.mp4


                I realize the question referred to Ubuntu 14. But since this is the top Google result I got when searching "mov to mp4 ubuntu", I figure it would be worth adding here.



                Source: https://mrcoles.com/convert-mov-mp4-ffmpeg/






                share











                share


                share










                answered 8 mins ago









                klenwellklenwell

                1,49431925




                1,49431925



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f742426%2fconverting-mov-files-to-mp4-using-ffmpeg%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    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»