diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-12-30 23:57:19 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-12-30 23:57:19 +0100 | 
| commit | c7932289e73f62d5d73b942175c66510acc2be7e (patch) | |
| tree | 97fdd6d5d7b7466e8d39b7bdaae6e8785e336351 | |
| parent | 3092fc4035dd3a0841a92227e9bd80b7b9e4d871 (diff) | |
[cbsnews] Fix extraction of the URL for the 'RtmpDesktop' format (fixes #8048)
| -rw-r--r-- | youtube_dl/extractor/cbsnews.py | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cbsnews.py b/youtube_dl/extractor/cbsnews.py index f9a64a0a2..d211ec23b 100644 --- a/youtube_dl/extractor/cbsnews.py +++ b/youtube_dl/extractor/cbsnews.py @@ -5,6 +5,7 @@ import re  import json  from .common import InfoExtractor +from ..utils import remove_start  class CBSNewsIE(InfoExtractor): @@ -62,6 +63,7 @@ class CBSNewsIE(InfoExtractor):              uri = item.get('media' + format_id + 'URI')              if not uri:                  continue +            uri = remove_start(uri, '{manifest:none}')              fmt = {                  'url': uri,                  'format_id': format_id, @@ -70,6 +72,8 @@ class CBSNewsIE(InfoExtractor):                  play_path = re.sub(                      r'{slistFilePath}', '',                      uri.split('<break>')[-1].split('{break}')[-1]) +                play_path = re.sub( +                    r'{manifest:.+}.*$', '', play_path)                  fmt.update({                      'app': 'ondemand?auth=cbs',                      'play_path': 'mp4:' + play_path,  | 
