diff options
| author | remitamine <remitamine@gmail.com> | 2016-04-15 22:38:37 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2016-04-15 22:38:37 +0100 | 
| commit | f74197a0746ac24fc6003166fbc7b36362ce8ba8 (patch) | |
| tree | 2c4bc3bd81b00a0b48e28b8850d9a3b9a7e2a744 /youtube_dl/extractor/cbs.py | |
| parent | f3a58d46bf969b33910479a3a6096635e793a553 (diff) | |
[cbs] extract rtmp formats
Diffstat (limited to 'youtube_dl/extractor/cbs.py')
| -rw-r--r-- | youtube_dl/extractor/cbs.py | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/cbs.py b/youtube_dl/extractor/cbs.py index c621a08d5..62f52ec8e 100644 --- a/youtube_dl/extractor/cbs.py +++ b/youtube_dl/extractor/cbs.py @@ -64,7 +64,7 @@ class CBSIE(CBSBaseIE):          'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',          'only_matching': True,      }] -    TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?manifest=m3u&mbr=true' +    TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?mbr=true'      def _real_extract(self, url):          display_id = self._match_id(url) @@ -85,8 +85,11 @@ class CBSIE(CBSBaseIE):              if not pid:                  continue              try: +                tp_release_url = self.TP_RELEASE_URL_TEMPLATE % pid +                if '.m3u8' in xpath_text(item, 'contentUrl', default=''): +                    tp_release_url += '&manifest=m3u'                  tp_formats, tp_subtitles = self._extract_theplatform_smil( -                    self.TP_RELEASE_URL_TEMPLATE % pid, content_id, 'Downloading %s SMIL data' % pid) +                    tp_release_url, content_id, 'Downloading %s SMIL data' % pid)              except ExtractorError:                  continue              formats.extend(tp_formats) | 
