validate: Add support for prores

This commit is contained in:
Thibault Saunier 2015-10-14 11:56:56 +01:00
parent 9005428910
commit aef41ba72a

View file

@ -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)