Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.9.2
-
None
-
None
Description
External parsers can have many supported content types, but information is lost in CompositeParser:
public Map<MediaType, Parser> getParsers(ParseContext context) {
Map<MediaType, Parser> map = new HashMap<>();
for (Parser parser : parsers) {
for (MediaType type : parser.getSupportedTypes(context))
}
return map;
}
To recreate - parse any avi file (content type: video/x-msvideo), Only the exiftool will by picked up and the ffmpeg parser won't be executed.