media_types/video/util.py: Add accepted resolutions
authorvijeth-aradhya <vijthaaa@gmail.com>
Tue, 30 May 2017 19:51:34 +0000 (01:21 +0530)
committervijeth-aradhya <vijthaaa@gmail.com>
Tue, 30 May 2017 19:51:34 +0000 (01:21 +0530)
Add dict consisting of all the accepted resolutions with
their dimensions. This should be eventually moved to config
where the instance owner can modify it.

mediagoblin/media_types/video/util.py

index 8b65d83981a801889f7b0b001246d4bda12dd5d8..1f5e907da9a9c589e797d9028eeb2ad103efec65 100644 (file)
@@ -18,6 +18,15 @@ import logging
 
 from mediagoblin import mg_globals as mgg
 
+ACCEPTED_RESOLUTIONS = {
+    '144p' : (256, 144),
+    '240p' : (352, 240),
+    '360p' : (480, 360),
+    '480p' : (858, 480),
+    '720p' : (1280, 720),
+    '1080p' : (1920, 1080),
+}
+
 _log = logging.getLogger(__name__)