{"success":true,"data":{"ext":"ez3","name":"EZ3","description":"EZ3 is a legacy audio sample file format used with E-mu Systems' Emulator III synthesizer and related software. It stores instrument samples for sampling, playback, and sound design in music production and archival libraries. As an older format, it is now uncommon, but files are generally safe to open with compatible audio tools, though support in modern editors may be limited.","mime":["application/vnd.ezpix-package"],"risk_level":"Safe","signatures":[{"hex":"45 4D 55 33","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_ez3(file_path: str) -> bool:\n    \"\"\"Check if file is a valid EZ3 by magic bytes.\"\"\"\n    signature = bytes([0x45, 0x4D, 0x55, 0x33])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isEZ3(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x45, 0x4D, 0x55, 0x33]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsEZ3(data []byte) bool {\n    signature := []byte{0x45, 0x4D, 0x55, 0x33}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}