Difference between revisions of "QuickTime container"

From VideoLAN Wiki
Jump to navigation Jump to search
(→‎Compatability: Tagging page with {{check}})
(Adjust Template:Mux instance information)
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''QuickTime Video''' (also known as the '''Apple Video codec''') and '''QuickTime Audio''' are [[codec]]s used to create [[QuickTime Files]]. QuickTime files can also contain other types of video and audio codecs.
+
{{Mux|id=mov|mod=mp4|encoder=y|altid=mov|altid2=3gp}}
 +
{{Wikipedia|QuickTime File Format}}
 +
{{Mmwiki|QuickTime container}}
 +
[[QuickTime]] natively uses this container ([https://developer.apple.com/standards/classic-quicktime/ described] as ''QuickTime File Format'' by Apple), which can store other data, including video, audio and text. The advantage of this container format is the separation of data from metadata: writes to metadata do not necessitate a re-write of the entire media file. QuickTime video files have the extension .mov (presumably for movie) or .qt (presumably for QuickTime).
  
== Compatability ==
+
The QuickTime container was made into a standard "ISO base media file format", the basis for [[MPEG-4]] (part 14) and [[3GP]].
VLC can play QuickTime files up to version 2.0.{{check}}
 
  
{{compat}}
+
== Source code ==
 
+
* {{VLCSourceFile|modules/mux/mp4/mp4.c}} (MOV/MP4 muxer)
== See Also ==
 
* [[QuickTime]]
 
* [[QuickTime Player]]
 

Latest revision as of 03:29, 26 March 2019

mov
VLC can encode and decode this container.
The module name to use at the command line is mp4, but you can also use mov, or 3gp.

QuickTime natively uses this container (described as QuickTime File Format by Apple), which can store other data, including video, audio and text. The advantage of this container format is the separation of data from metadata: writes to metadata do not necessitate a re-write of the entire media file. QuickTime video files have the extension .mov (presumably for movie) or .qt (presumably for QuickTime).

The QuickTime container was made into a standard "ISO base media file format", the basis for MPEG-4 (part 14) and 3GP.

Source code