aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-04 22:27:25 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-04 22:27:25 +0600
commited676e8c0ab087acb8e5e26a2a8d94a47fe10c33 (patch)
tree85d495f40328716bcb1e08d03099f151cf332e37
parent8e1f93747338d64f6855c0f7f9467714bf56db93 (diff)
downloadyoutube-dl-ed676e8c0ab087acb8e5e26a2a8d94a47fe10c33.tar.xz
[bliptv] Check format URLs
Some formats are now 404
-rw-r--r--youtube_dl/extractor/bliptv.py1
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)