{"success":true,"data":{"ext":"vob","name":"DVD Video Movie File","description":"DVD Video Object (VOB) is a container format defined for the DVD-Video standard and maintained by the DVD Forum. It is used to store video, audio, subtitles, and navigation data for DVD movie titles, menus, and bonus content. VOB files are a legacy format associated with optical disc playback; they are generally safe, though some implementations may include complex multiplexed streams that can challenge older software.","mime":[],"risk_level":"Safe","signatures":[{"hex":"00 00 01 BA","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"},{"name":"Gary Kessler","url":"https://www.garykessler.net/library/file_sigs_GCK_latest.html"}]}],"related":["mpg","mov","3g2","3gp","asf","avi"],"usage":{"python":"def is_vob(file_path: str) -> bool:\n    \"\"\"Check if file is a valid VOB by magic bytes.\"\"\"\n    signature = bytes([0x00, 0x00, 0x01, 0xBA])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isVOB(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x00, 0x00, 0x01, 0xBA]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsVOB(data []byte) bool {\n    signature := []byte{0x00, 0x00, 0x01, 0xBA}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"},"category":"Video"}}