diff options
author | Thibault Saunier <tsaunier@gnome.org> | 2015-10-14 11:56:56 +0100 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2015-10-14 12:01:15 +0100 |
commit | aef41ba72afa175254b3592a3e3597ba58a3c704 (patch) | |
tree | f6d58efb04a1517e27d185f60c1ebe02b80507b9 | |
parent | 9005428910546de2e1ad61e55a5fad7fdd514c44 (diff) |
validate: Add support for prores
-rw-r--r-- | validate/launcher/baseclasses.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/validate/launcher/baseclasses.py b/validate/launcher/baseclasses.py index 0affd4d..7b0f2e1 100644 --- a/validate/launcher/baseclasses.py +++ b/validate/launcher/baseclasses.py @@ -1716,7 +1716,11 @@ class MediaFormatCombination(object): "ogg": "application/ogg", "mkv": "video/x-matroska", "mp4": "video/quicktime,variant=iso;", - "webm": "video/webm"} + "webm": "video/webm", + "quicktime": "video/quicktime;", + "rawaudio": "audio/x-raw", + "prores": "video/x-prores", + } def __str__(self): return "%s and %s in %s" % (self.audio, self.video, self.container) |