diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-04 22:27:25 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-04 22:27:25 +0600 |
commit | ed676e8c0ab087acb8e5e26a2a8d94a47fe10c33 (patch) | |
tree | 85d495f40328716bcb1e08d03099f151cf332e37 /youtube_dl | |
parent | 8e1f93747338d64f6855c0f7f9467714bf56db93 (diff) |
[bliptv] Check format URLs
Some formats are now 404
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/bliptv.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bliptv.py b/youtube_dl/extractor/bliptv.py index 8c7ba4b91..b632ce967 100644 --- a/youtube_dl/extractor/bliptv.py +++ b/youtube_dl/extractor/bliptv.py @@ -172,6 +172,7 @@ class BlipTVIE(InfoExtractor): 'width': int_or_none(media_content.get('width')), 'height': int_or_none(media_content.get('height')), }) + self._check_formats(formats, video_id) self._sort_formats(formats) subtitles = self.extract_subtitles(video_id, subtitles_urls) |