From: Yen Chi Hsuan Date: Thu, 13 Aug 2015 04:56:12 +0000 (+0800) Subject: [theplatform] Fallback to hardcoded releaseUrl if not available X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=28479149ccf3425e6a6e35d3a155f6802629728a;p=youtube-dl [theplatform] Fallback to hardcoded releaseUrl if not available Fixes #6546. Not adding a test case as test_NBC has the same problem. --- diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py index 83d833e30..0643eccaf 100644 --- a/youtube_dl/extractor/theplatform.py +++ b/youtube_dl/extractor/theplatform.py @@ -108,7 +108,11 @@ class ThePlatformIE(InfoExtractor): config_url = config_url.replace('swf/', 'config/') config_url = config_url.replace('onsite/', 'onsite/config/') config = self._download_json(config_url, video_id, 'Downloading config') - smil_url = config['releaseUrl'] + '&format=SMIL&formats=MPEG4&manifest=f4m' + if 'releaseUrl' in config: + release_url = config['releaseUrl'] + else: + release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path + smil_url = release_url + '&format=SMIL&formats=MPEG4&manifest=f4m' else: smil_url = 'http://link.theplatform.com/s/%s/meta.smil?format=smil&mbr=true' % path