Skip to content

Commit

Permalink
[thesun] fix extraction(closes #16966)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Oct 28, 2019
1 parent 71fa0b0 commit 80c2126
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions youtube_dl/extractor/thesun.py
Expand Up @@ -3,7 +3,7 @@
import re

from .common import InfoExtractor
from .ooyala import OoyalaIE
from ..utils import extract_attributes


class TheSunIE(InfoExtractor):
Expand All @@ -16,17 +16,23 @@ class TheSunIE(InfoExtractor):
},
'playlist_count': 2,
}
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/%s/default_default/index.html?videoId=%s'

def _real_extract(self, url):
article_id = self._match_id(url)

webpage = self._download_webpage(url, article_id)

entries = []
for ooyala_id in re.findall(
r'<[^>]+\b(?:id\s*=\s*"thesun-ooyala-player-|data-content-id\s*=\s*")([^"]+)',
for video in re.findall(
r'<video[^>]+data-video-id-pending=[^>]+>',
webpage):
entries.append(OoyalaIE._build_url_result(ooyala_id))
attrs = extract_attributes(video)
video_id = attrs['data-video-id-pending']
account_id = attrs.get('data-account', '5067014667001')
entries.append(self.url_result(
self.BRIGHTCOVE_URL_TEMPLATE % (account_id, video_id),
'BrightcoveNew', video_id))

return self.playlist_result(
entries, article_id, self._og_search_title(webpage, fatal=False))

0 comments on commit 80c2126

Please sign in to comment.