diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-03-27 07:03:08 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-27 07:03:08 +0600 |
commit | 19dbaeece321c51fa336ef142507adf440e22e22 (patch) | |
tree | 1272b3f79962d677efad81431ad6ea38649ea225 /youtube_dl/extractor/ynet.py | |
parent | 395fd4b08a4639f7e84754527e9facd83c8f782d (diff) |
Remove _sort_formats from _extract_*_formats methods
Now _sort_formats should be called explicitly.
_sort_formats has been added to all the necessary places in code.
Closes #8051
Diffstat (limited to 'youtube_dl/extractor/ynet.py')
-rw-r--r-- | youtube_dl/extractor/ynet.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ynet.py b/youtube_dl/extractor/ynet.py index 2522551dc..0d943c343 100644 --- a/youtube_dl/extractor/ynet.py +++ b/youtube_dl/extractor/ynet.py @@ -41,10 +41,12 @@ class YnetIE(InfoExtractor): m = re.search(r'ynet - HOT -- (["\']+)(?P<title>.+?)\1', title) if m: title = m.group('title') + formats = self._extract_f4m_formats(f4m_url, video_id) + self._sort_formats(formats) return { 'id': video_id, 'title': title, - 'formats': self._extract_f4m_formats(f4m_url, video_id), + 'formats': formats, 'thumbnail': self._og_search_thumbnail(webpage), } |