{"success":true,"data":{"ext":"nri","name":"Nero CD Compilation","description":"Nero CD Compilation (NRI) is a disc compilation file format created by Nero AG for the Nero Burning ROM suite. It stores CD project data, including track order, session information, and write settings, for authoring and replaying disc images in Nero applications. The format is associated with legacy optical-disc workflows and is generally safe, though the files are specific to Nero software and may be of limited use outside it.","mime":[],"risk_level":"Safe","signatures":[{"hex":"0E 4E 65 72 6F 49 53 4F","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":[],"usage":{"python":"def is_nri(file_path: str) -> bool:\n    \"\"\"Check if file is a valid NRI by magic bytes.\"\"\"\n    signature = bytes([0x0E, 0x4E, 0x65, 0x72, 0x6F, 0x49, 0x53, 0x4F])\n    with open(file_path, \"rb\") as f:\n        return f.read(8) == signature","node":"function isNRI(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x0E, 0x4E, 0x65, 0x72, 0x6F, 0x49, 0x53, 0x4F]);\n  return buffer.subarray(0, 8).equals(signature);\n}","go":"func IsNRI(data []byte) bool {\n    signature := []byte{0x0E, 0x4E, 0x65, 0x72, 0x6F, 0x49, 0x53, 0x4F}\n    if len(data) < 8 {\n        return false\n    }\n    return bytes.Equal(data[:8], signature)\n}"}}}