aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/cbsnews.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-18 09:21:21 +0100
committerremitamine <remitamine@gmail.com>2016-03-18 09:22:10 +0100
commit4c92fd2e835cde89866d3dfb1fc05d23196b19db (patch)
treed8988a9d4764f28fa222ef38a35feee2eeb103fa /youtube_dl/extractor/cbsnews.py
parente3d17b3c07c6d8bc7fd45af1e45523e8fde5fb58 (diff)
downloadyoutube-dl-4c92fd2e835cde89866d3dfb1fc05d23196b19db.tar.xz
[theplatform] always force theplatform to return a smil for _extract_theplatform_smil
Diffstat (limited to 'youtube_dl/extractor/cbsnews.py')
-rw-r--r--youtube_dl/extractor/cbsnews.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cbsnews.py b/youtube_dl/extractor/cbsnews.py
index 7319ee1b7..8ddcc5097 100644
--- a/youtube_dl/extractor/cbsnews.py
+++ b/youtube_dl/extractor/cbsnews.py
@@ -78,7 +78,7 @@ class CBSNewsIE(ThePlatformIE):
pid = item.get('media' + format_id)
if not pid:
continue
- release_url = 'http://link.theplatform.com/s/dJ5BDC/%s?format=SMIL&mbr=true' % pid
+ release_url = 'http://link.theplatform.com/s/dJ5BDC/%s?mbr=true' % pid
tp_formats, tp_subtitles = self._extract_theplatform_smil(release_url, video_id, 'Downloading %s SMIL data' % pid)
formats.extend(tp_formats)
subtitles = self._merge_subtitles(subtitles, tp_subtitles)