Unverified Commit 92dafd28 authored by seb-b's avatar seb-b Committed by GitHub
Browse files

Merge pull request #50 from buczek/fix-typo

Fix typo in ogg media format description
parents 3cd93351 0fa374ab
...@@ -47,7 +47,7 @@ class VideoQuality(ChoiceEnum): ...@@ -47,7 +47,7 @@ class VideoQuality(ChoiceEnum):
class MediaFormats(ChoiceEnum): class MediaFormats(ChoiceEnum):
webm = 'VP8 and Vorbis in WebM' webm = 'VP8 and Vorbis in WebM'
mp4 = 'H.264 and MP3 in Mp4' mp4 = 'H.264 and MP3 in Mp4'
ogg = 'Theora and Voris in Ogg' ogg = 'Theora and Vorbis in Ogg'
def get_quality_param(self, quality): def get_quality_param(self, quality):
if self is MediaFormats.webm: if self is MediaFormats.webm:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment