Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I convert mov to mp4 on ios device [closed]

I am writing ios app that should convert mov file to mp4. Is there any ways to that using AVFoundation or something similar?

I will really appreciate your help!

Thanks!

like image 516
Artem Kiselev Avatar asked Sep 22 '12 22:09

Artem Kiselev


People also ask

How do I save a MOV file as MP4?

To convert MOV to MP4, Right-click on MOV file and select open with Photos the video will open, on the right-up corner click "Edit and Create" and select "Trim", after that click "Save As" to save it where you want and you can see the file MOV is converted to MP4. Note: There are links to non-Microsoft websites.

Can you convert IOS video to MP4?

Just use QuickTime Player » Export » and select the format you want (iPad, iPhone, iPod, iTunes). Change the file extension from ". m4v" to ". mp4" if you want, there's no difference.

Can iPhone record MP4 instead of MOV?

Use Apple's built-in Spotlight Search if you can't find it on your home screen or App Library. Next, scroll down and tap the “Camera” option. Choose “Formats” from the top of the menu. Now your iPhone will keep using more compatible formats, including JPEG and MP4.


1 Answers

Do you need to do AV media transcoding, or just change the container? A standard (not streaming) MOV container will/should be compatible with a MP4 container (inspection of a few test files from iOS show they are identical). So it is possible that you could just rename the file to MP4. This does assume the media in the container is supported by the MP4 container. FYI, The ISO spec for MP4 is based on the Quicktime file format. Also, if you are recording the media on the device then you can select MP4 as the container for the media.

like image 147
Steve McFarlin Avatar answered Nov 11 '22 05:11

Steve McFarlin