summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-06 00:52:48 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-06 00:52:48 +0700
commita6d3b89febce9450b10cb379568d77895103c998 (patch)
tree3bf41083b0b0eed696e6edd260062594258676c9
parent6c26815d638c55c106fb73a3d0ce6d87fd94bd4c (diff)
downloadyoutube-dl-a6d3b89febce9450b10cb379568d77895103c998.tar.gz
youtube-dl-a6d3b89febce9450b10cb379568d77895103c998.tar.xz
youtube-dl-a6d3b89febce9450b10cb379568d77895103c998.zip
[prosiebensat1] Make downloading urls JSON non fatal
-rw-r--r--youtube_dl/extractor/prosiebensat1.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/prosiebensat1.py b/youtube_dl/extractor/prosiebensat1.py
index ad0f0031c..c6eee3b72 100644
--- a/youtube_dl/extractor/prosiebensat1.py
+++ b/youtube_dl/extractor/prosiebensat1.py
@@ -280,7 +280,7 @@ class ProSiebenSat1IE(InfoExtractor):
             client_id = g[:2] + sha1(''.join([g, clip_id, access_token, server_id, client_location, source_id, g, client_name]).encode('utf-8')).hexdigest()
             urls = self._download_json(
                 'http://vas.sim-technik.de/vas/live/v2/videos/%s/sources/url' % clip_id,
-                clip_id, 'Downloading urls JSON', query={
+                clip_id, 'Downloading urls JSON', fatal=False, query={
                     'access_token': access_token,
                     'client_id': client_id,
                     'client_location': client_location,
@@ -288,6 +288,8 @@ class ProSiebenSat1IE(InfoExtractor):
                     'server_id': server_id,
                     'source_ids': source_id,
                 })
+            if not urls:
+                continue
             if urls.get('status_code') != 0:
                 raise ExtractorError('This video is unavailable', expected=True)
             urls_sources = urls['sources']