diff --git a/videodinges/models.py b/videodinges/models.py index 2a93f14..eba1104 100644 --- a/videodinges/models.py +++ b/videodinges/models.py @@ -32,8 +32,14 @@ transcoding_types = ( TranscodingType(name='video/webm; codecs="vp8, vorbis"', short_name='vp8', description='WebM with VP8 and Vorbis'), TranscodingType(name='video/webm; codecs="vp9, opus"', short_name='vp9', description='WebM with VP9 and Opus'), TranscodingType(name='video/mp4', short_name='h.264', description='Generic MP4 with H.264'), + TranscodingType(name='video/mp4; codecs="avc1.64001e,mp4a.40.2"', short_name='h.264', + description='MP4 with H.264 (AVC1 profile High, Level 3.0) and AAC-LC'), TranscodingType(name='video/mp4; codecs="avc1.64001f,mp4a.40.2"', short_name='h.264', description='MP4 with H.264 (AVC1 profile High, Level 3.1) and AAC-LC'), + TranscodingType(name='video/mp4; codecs="avc1.640028,mp4a.40.2"', short_name='h.264', + description='MP4 with H.264 (AVC1 profile High, Level 4.0) and AAC-LC'), + TranscodingType(name='video/mp4; codecs="avc1.640032,mp4a.40.2"', short_name='h.264', + description='MP4 with H.264 (AVC1 profile High, Level 5.0) and AAC-LC'), ) class Upload(models.Model):