Browse Source

[viki] Fix height (Closes #6333)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
c59b61c0da
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/viki.py

+ 2
- 2
youtube_dl/extractor/viki.py View File

@ -242,8 +242,8 @@ class VikiIE(VikiBaseIE):
formats = [] formats = []
for format_id, stream_dict in streams.items(): for format_id, stream_dict in streams.items():
height = self._search_regex(
r'^(\d+)[pP]$', format_id, 'height', default=None)
height = int_or_none(self._search_regex(
r'^(\d+)[pP]$', format_id, 'height', default=None))
for protocol, format_dict in stream_dict.items(): for protocol, format_dict in stream_dict.items():
if format_id == 'm3u8': if format_id == 'm3u8':
formats = self._extract_m3u8_formats( formats = self._extract_m3u8_formats(


Loading…
Cancel
Save