about summary refs log tree commit diff
path: root/youtube_dl/extractor/bravotv.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/bravotv.py
parente3d17b3c07c6d8bc7fd45af1e45523e8fde5fb58 (diff)
downloadyoutube-dl-4c92fd2e835cde89866d3dfb1fc05d23196b19db.tar.gz
youtube-dl-4c92fd2e835cde89866d3dfb1fc05d23196b19db.tar.xz
youtube-dl-4c92fd2e835cde89866d3dfb1fc05d23196b19db.zip
[theplatform] always force theplatform to return a smil for _extract_theplatform_smil
Diffstat (limited to 'youtube_dl/extractor/bravotv.py')
-rw-r--r--youtube_dl/extractor/bravotv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bravotv.py b/youtube_dl/extractor/bravotv.py
index 69d00b466..34d451f38 100644
--- a/youtube_dl/extractor/bravotv.py
+++ b/youtube_dl/extractor/bravotv.py
@@ -24,5 +24,5 @@ class BravoTVIE(InfoExtractor):
         account_pid = self._search_regex(r'"account_pid"\s*:\s*"([^"]+)"', webpage, 'account pid')
         release_pid = self._search_regex(r'"release_pid"\s*:\s*"([^"]+)"', webpage, 'release pid')
         return self.url_result(smuggle_url(
-            'http://link.theplatform.com/s/%s/%s?format=SMIL&mbr=true&switch=progressive' % (account_pid, release_pid),
+            'http://link.theplatform.com/s/%s/%s?mbr=true&switch=progressive' % (account_pid, release_pid),
             {'force_smil_url': True}), 'ThePlatform', release_pid)