Code: ``` static Future<String?> guessMimeType(File file) async { final headerBytes = (await file.openRead(0, defaultMagicNumbersMaxLength).toList()) .map((e) => e.toList()) .flattened .toList(); return lookupMimeType(file.path, headerBytes: headerBytes); } ``` When I input m4a file, I will get `video/mp4` not `audio/mp4`.