MOV file signature
Magic number at offset 4 · ftypqt
A QuickTime MOV is an ISO Base Media file whose ftyp box declares the brand qt (with trailing spaces) at offset 8. Some older MOV files instead begin directly with a moov or mdat box.
What this magic number means
A magic number is a short, fixed run of bytes at a known position that tells a program what a file really is, no matter what the filename says. If a file contains, at offset 4, the bytes 66 74 79 70 71 74 20 20 (the text ftypqt ), it is a MOV file.
What each byte of 66 74 79 70 means
Here is the signature byte by byte, the way a hex editor shows it: the position in the file, the value in hex and in decimal, and the character that value stands for in ASCII. Bytes with no printable character show a dot.
| Byte offset | Hex | Decimal | ASCII |
|---|---|---|---|
| 4 | 66 | 102 | f |
| 5 | 74 | 116 | t |
| 6 | 79 | 121 | y |
| 7 | 70 | 112 | p |
| 8 | 71 | 113 | q |
| 9 | 74 | 116 | t |
| 10 | 20 | 32 | |
| 11 | 20 | 32 |
Formats that use the 66 74 79 70 signature
These file types in our database carry this signature:
How to check a file's signature
You can read the bytes of any file yourself. They are shown in hex, the same way this page lists them.
Linux & macOS
- xxd -s 4 -l 8 example.mov
- hexdump -C -s 4 -n 8 example.mov
- file example.mov
Windows (PowerShell)
- Format-Hex -Path example.mov -Count 16
Python
- f=open("example.mov","rb");f.seek(4);f.read(8).hex()
In your browser
- Drop the file into the WhatFileType identifier, which reads the signature without uploading it.
Frequently asked questions
What is the MOV file signature?
MOV files carry, at offset 4, the hex bytes 66 74 79 70 71 74 20 20 (ftypqt in ASCII). This magic number identifies the format regardless of the file's name or extension.
How do I check a file's magic number?
Open the file in a hex editor, or run a command such as xxd -l 16 example.mov on Linux or macOS, or Format-Hex -Path example.mov -Count 16 in Windows PowerShell, and read the first bytes.
Can a file fake the MOV signature?
Renaming a file does not change its bytes, so the extension can lie but the signature usually cannot. A genuine MOV file has these exact bytes; a file with the wrong bytes is not really MOV, whatever its name says.
Related signatures
Sources
Reuse this signature
This entry is part of the WhatFileType file signature reference, published under a CC BY 4.0 licence with the full provenance for every entry, a copy-paste embed and a JSON export. Credit WhatFileType and the data is yours to republish.