[prosiebensat1] Make downloading urls JSON non fatal
authorSergey M․ <dstftw@gmail.com>
Tue, 5 Jul 2016 17:52:48 +0000 (00:52 +0700)
committerSergey M․ <dstftw@gmail.com>
Tue, 5 Jul 2016 17:52:48 +0000 (00:52 +0700)
youtube_dl/extractor/prosiebensat1.py

index ad0f0031cf79a7218d16279922871a5f19795316..c6eee3b72a6e428012644ee7c10caad9be78fa86 100644 (file)
@@ -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']