diff options
Diffstat (limited to 'youtube_dl/extractor/breakcom.py')
| -rw-r--r-- | youtube_dl/extractor/breakcom.py | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py index 85635d1cc..1bfc9f35b 100644 --- a/youtube_dl/extractor/breakcom.py +++ b/youtube_dl/extractor/breakcom.py @@ -27,9 +27,10 @@ class BreakIE(InfoExtractor):              webpage, 'info json', flags=re.DOTALL)          info = json.loads(info_json)          video_url = info['videoUri'] -        m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', video_url) -        if m_youtube is not None: -            return self.url_result(m_youtube.group(1), 'Youtube') +        youtube_id = info.get('youtubeId') +        if youtube_id: +            return self.url_result(youtube_id, 'Youtube') +          final_url = video_url + '?' + info['AuthToken']          return {              'id': video_id, | 
