aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/keezmovies.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/keezmovies.py')
-rw-r--r--hypervideo_dl/extractor/keezmovies.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/keezmovies.py b/hypervideo_dl/extractor/keezmovies.py
index 027f43c..06dbcbb 100644
--- a/hypervideo_dl/extractor/keezmovies.py
+++ b/hypervideo_dl/extractor/keezmovies.py
@@ -8,6 +8,7 @@ from ..compat import compat_urllib_parse_unquote
from ..utils import (
determine_ext,
ExtractorError,
+ format_field,
int_or_none,
str_to_int,
strip_or_none,
@@ -69,7 +70,7 @@ class KeezMoviesIE(InfoExtractor):
video_url, title, 32).decode('utf-8')
formats.append({
'url': format_url,
- 'format_id': '%dp' % height if height else None,
+ 'format_id': format_field(height, template='%dp'),
'height': height,
'tbr': tbr,
})