7

I recorded my desktop with quicktime (for a tutorial I am making) on an iMac and the output was a .mov file.

I edited and deleted scenes with OpenShot and now I don't know how to export it to a .mov file again.

I know the video format is supposed to be .mov, but I am not so sure about the codec. Should that be h263, h262, libvpx, etc?

blade19899
  • 26,994

2 Answers2

2

You would be better to select H.264. It's supported by most of the currently widely used devices. A good alternative would be H.265 which provides higher compression efficiency with reduced bandwidth requirements and storage space compared to H.264 while maintaining the same quality. But perhaps some older devices do not support it.

I know my phone is capable of using H.264, but I'm not sure about those other codecs that you have mentioned. Certainly H.263 and H.262 are rather old and low quality by modern standards.

NotTheDr01ds
  • 22,082
2

In a newer version of OpenShot (I am using the OpenShot 3.3.0 AppImage version) export to a .mov file is pretty straightforward.

Once you have completed your project, simply press the key combination Ctrl+e to open the Export Video box. Then select one of the MOV options from the Target dropdown box as you see below:

Export Video dialog showing target options for exporting

You will need to decide which of the 3 video and audio codec combinations to use. Your decision should be based on what is most appropriate for your target audience.

The 3 options seen here involve:

  1. MOV (h.264): libx264 for video codec and aac for the audio codec
  2. MOV (mpeg2): mpeg2video for video codec and mp2 for audio codec
  3. MOV (mpeg4): mpeg4 for video codec and libmp3lame for audio codec

If you are unsure what to do, simply accept the first option given here and let the sane defaults look after you and your exported media. If you are a media magician then head to the Advanced settings tab and make all of your own decisions.

References:

andrew.46
  • 39,359