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?
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
add a comment |
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
add a comment |
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
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
ffmpeg
asked Mar 5 '16 at 15:48
RoadrawtsRoadrawts
36112
36112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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:
- Use Doug McMahon's great Trusty Multimedia PPA
- 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...
Instead of compiling, what aboutdeb 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
add a comment |
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/
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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:
- Use Doug McMahon's great Trusty Multimedia PPA
- 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...
Instead of compiling, what aboutdeb 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
add a comment |
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:
- Use Doug McMahon's great Trusty Multimedia PPA
- 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...
Instead of compiling, what aboutdeb 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
add a comment |
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:
- Use Doug McMahon's great Trusty Multimedia PPA
- 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...
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:
- Use Doug McMahon's great Trusty Multimedia PPA
- 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...
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 aboutdeb 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
add a comment |
Instead of compiling, what aboutdeb 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
add a comment |
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/
add a comment |
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/
add a comment |
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/
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/
answered 8 mins ago
klenwellklenwell
1,49431925
1,49431925
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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