M4V MIME Type
video/x-m4v identifies, how M4V relates to MP4, which software opens it, and how Poly supports M4V video files. MIME type details for video/x-m4v
In active use| MIME type | video/x-m4v |
|---|---|
| Extensions | .m4v |
| First standardized | Unknown |
| Created by | Apple Inc. |
| Browser support | Chrome, Edge, Firefox, Opera, Safari |
| Example applications | Apple TV, QuickTime Player |
| Poly support | Yes. Poly recognizes `.m4v` videos and processes supported audio and video content for playback, search, and metadata. |
| Indexed by Poly | Yes. Poly indexes the filename, available technical metadata, spoken transcript, and sampled visual content. A transcript requires a usable audio track. |
| Preview in Poly | Yes. Poly provides a thumbnail, timeline previews, and in-app playback when the file's streams can be decoded. |
| Poly agent | Yes. The Poly agent can use supported visual content, transcript, and metadata. Results depend on decodable streams and audible speech. |
What does video/x-m4v mean?
The video/x-m4v media type identifies an M4V video file. Apple describes M4V as the iTunes video file format, assigns it the Uniform Type Identifier com.apple.m4v-video, and associates it with the .m4v extension.1
M4V belongs to the same broad family of atom- or box-based media containers as MP4 and QuickTime movies. The container can hold video, audio, subtitles, and metadata, while codecs determine how each track is compressed. Apple device specifications, for example, document .m4v files carrying H.264 or MPEG-4 video with AAC audio.2
video/x-m4v is a widely used but unregistered media type. It does not appear in the IANA media type registry. The registered media type for an MPEG-4 presentation is video/mp4, as defined by RFC 4337.34This distinction matters when configuring a web server. Apple has documented video/x-m4v for .m4v delivery to Safari, while other Apple guidance has paired both .m4v and .mp4 with video/mpeg4.56 For a generic, non-protected MPEG-4 presentation, video/mp4 is the standards-based choice. Keep video/x-m4v when software specifically uses the M4V convention or depends on the original label.
How to identify an M4V file
There is no short byte sequence unique to every M4V file. Like closely related MP4 and QuickTime files, an M4V is organized into boxes called atoms in Apple documentation. Each atom begins with a size and a four-character type.7
Many files begin with a file-type box whose type is ftyp at byte offset 4. That box declares a major brand and compatible brands, which are more informative than the extension alone. Apple explains that the ftyp box distinguishes closely related MPEG-4, QuickTime, and JPEG 2000 structures, but also notes that the box is optional in QuickTime-compatible files.8
Therefore, a reliable inspector should:
- Check the box sizes and hierarchy rather than trusting
.m4v. - Read the major and compatible brands when an
ftypbox exists. - Inspect every track's codec before deciding whether playback is possible.
- Treat the media type as a hint, not proof of the exact streams inside.
Renaming movie.m4v to movie.mp4 changes only its filename. It may help software that rejects an unfamiliar extension when the underlying file is otherwise ordinary MP4, but it does not remove access controls, repair invalid boxes, or convert an unsupported codec.
How to open an M4V file
Apple's AVFoundation recognizes M4V directly, and Apple's published device specifications list .m4v alongside .mp4 and .mov for supported H.264, MPEG-4, and AAC combinations.12 QuickTime Player and the Apple TV app are natural first choices on Apple platforms.
Modern browsers can play the common MP4 combination of H.264 video and AAC audio. MDN describes that combination as supported by every major browser.9 Browser success still depends on the tracks inside the M4V, the codec profiles supported by the device, and whether the file is protected. Browser compatibility tables usually track the container and codec combination, not .m4v as an independent format.
Some downloaded Apple purchases require an authorized computer and the Apple Account used for the purchase. Apple currently allows up to five authorized computers for purchased content.10 A protected purchase is not an ordinary conversion source, even if its filename ends in .m4v.
M4V support in Poly
Poly recognizes .m4v files as video/x-m4v. For supported audio and video streams, Poly provides the same practical capabilities as its other common video formats:
- A representative thumbnail and timeline previews for navigating the video.
- In-app playback that can seek to a matching moment.
- Available technical details such as duration, dimensions, frame rate, codecs, color information, and audio tracks.
- Search across the filename, spoken transcript, and sampled visual content.
- Access to supported visual content, transcript, and metadata through the Poly agent.
Transcript search requires usable audio with audible speech. A silent video can still be visually searchable. Protected, damaged, or unsupported streams may limit playback, content indexing, and agent access.
See Supported File Types for the compact video feature comparison.
M4V compared with MP4 and MOV
M4V, MP4, and MOV can look similar because their structures share ancestry, but the labels communicate different expectations.
| Label | Typical extension | Media type | Practical meaning |
|---|---|---|---|
| M4V | .m4v | video/x-m4v | Apple's iTunes video file convention; may be an ordinary compatible video or an account-controlled purchase. |
| MP4 video | .mp4 | video/mp4 | Standards-registered MPEG-4 presentation for broad interchange and web delivery.4 |
| QuickTime movie | .mov | video/quicktime | A QuickTime movie whose compatible brands and tracks must be read from the file.8 |
The extension does not identify the codec. Apple has shipped .m4v, .mp4, and .mov support for the same H.264/AAC and MPEG-4/AAC combinations.2 Conversely, two M4V files can have different playback results if their codecs, profiles, metadata, or access controls differ.
Converting M4V to MP4 or WebM
Choose a conversion method after inspecting the source:
| Goal | Approach | Result |
|---|---|---|
| Broader compatibility | Remux compatible, unprotected tracks into MP4 | Changes the container labeling without recompressing the media. |
| Maximum web compatibility | Encode H.264 video and AAC audio in MP4 | Uses the combination MDN recommends for broad browser playback.9 |
| Open web delivery | Encode a suitable codec combination in WebM | Produces a web-focused alternative, but requires re-encoding when the original tracks are incompatible. |
| Preserve an Apple purchase | Keep the original and use an authorized Apple app | Avoids discarding purchase metadata or access information. |
Remuxing is fast and preserves encoded quality, but it works only when the destination container accepts every required track. Re-encoding can improve compatibility at the cost of time and a possible generational quality loss. Always check duration, synchronization, subtitles, multiple audio tracks, color, and HDR behavior before discarding the source.
Footnotes
- Apple Developer Documentation. AVFileType.m4v. Apple identifies M4V as the iTunes video file format and documents its UTI and extension. ↩ ↩2
- Apple Support. Apple TV 4K (1st generation): Technical Specifications. The video-format list documents
.m4v,.mp4, and.movwith supported H.264, MPEG-4, and AAC combinations. ↩ ↩2 ↩3 - Internet Assigned Numbers Authority. Media Types Registry. The video registry includes
video/mp4but notvideo/x-m4v. ↩ - RFC Editor. RFC 4337: MIME Type Registration for MPEG-4. The registration assigns
video/mp4to MPEG-4 presentations containing a visual stream. ↩ ↩2 - Apple Developer Documentation Archive. Creating Video for Safari on iPhone. Its server table pairs
.m4vwithvideo/x-m4v. ↩ - Apple Developer Documentation Archive. Preparing Your Media and Server for AirPlay. Its server table groups
.m4vand.mp4undervideo/mpeg4. ↩ - Apple Developer Documentation. Atoms. Apple describes the common size-and-type structure and its correspondence with ISO boxes. ↩
- Apple Developer Documentation. File Type Compatibility Atom (
ftyp). The atom records a major brand and compatible brands for related container formats. ↩ ↩2 - MDN Web Docs. Web Video Codec Guide. MDN recommends H.264 video and AAC audio in MP4 for broad browser compatibility. ↩ ↩2
- Apple Support. Authorize or Deauthorize Your Computer for Apple Account Purchases. ↩