{"success":true,"data":{"ext":"movie","name":"MOVIE","description":"The MOVIE format is a legacy video file format developed by Silicon Graphics, Inc. (SGI) for use with its graphics and multimedia systems. It is primarily used to store short animation clips, screen recordings, and other video content in older SGI workflows and applications. As an older format, it is now largely obsolete, though files are generally low risk when handled by standard media software.","mime":["video/x-sgi-movie"],"risk_level":"Safe","signatures":[{"hex":"4D 4F 56 49 00","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]},{"hex":"4D 4F 56 49 01","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]},{"hex":"4D 4F 56 49 02","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]},{"hex":"4D 4F 56 49 FE","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]},{"hex":"4D 4F 56 49 FF","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]}],"related":[],"usage":{"python":"def is_movie(file_path: str) -> bool:\n    \"\"\"Check if file is a valid MOVIE by magic bytes.\"\"\"\n    signature = bytes([0x4D, 0x4F, 0x56, 0x49, 0x00])\n    with open(file_path, \"rb\") as f:\n        return f.read(5) == signature","node":"function isMOVIE(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x4D, 0x4F, 0x56, 0x49, 0x00]);\n  return buffer.subarray(0, 5).equals(signature);\n}","go":"func IsMOVIE(data []byte) bool {\n    signature := []byte{0x4D, 0x4F, 0x56, 0x49, 0x00}\n    if len(data) < 5 {\n        return false\n    }\n    return bytes.Equal(data[:5], signature)\n}"},"category":"Video"}}