{"success":true,"data":{"ext":"flm","name":"FLM","description":"FLM is a project file format used by FL Studio Mobile, a music production application developed and maintained by Image-Line. It stores arrangement data, instrument settings, audio clips, and automation for composing and editing songs within the app. The format is generally safe and is intended for trusted project files, though as with any application-specific file, it should be opened with supported software to avoid compatibility issues.","mime":[],"risk_level":"Safe","signatures":[{"hex":"31 30 4C 46","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_flm(file_path: str) -> bool:\n    \"\"\"Check if file is a valid FLM by magic bytes.\"\"\"\n    signature = bytes([0x31, 0x30, 0x4C, 0x46])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isFLM(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x31, 0x30, 0x4C, 0x46]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsFLM(data []byte) bool {\n    signature := []byte{0x31, 0x30, 0x4C, 0x46}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}