mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-06-12 22:04:42 +00:00
Closes #2623 Closes #2679 Closes #2821 Closes #3416 Closes #4828 Closes #4939 Closes #5421 Closes #7064 Closes #7264 Closes #7654 Closes #8075 Closes #8798 Closes #9313 Closes #9617 Closes #10162 Closes #10252 Closes #10264 Closes #15640 Authored by: doe1080, bashonly Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
from .common import InfoExtractor
|
|
from .streamable import StreamableIE
|
|
|
|
|
|
class FootyRoomIE(InfoExtractor):
|
|
_VALID_URL = r'https?://footyroom\.com/matches/(?P<id>\d+)'
|
|
_TESTS = [{
|
|
'url': 'http://footyroom.com/matches/79922154/hull-city-vs-chelsea/review',
|
|
'info_dict': {
|
|
'id': '79922154',
|
|
'title': 'VIDEO Hull City 0 - 2 Chelsea',
|
|
},
|
|
'playlist_count': 2,
|
|
'add_ie': [StreamableIE.ie_key()],
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
playlist_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
playlist = self._parse_json(self._search_regex(
|
|
r'DataStore\.media\s*=\s*([^;]+)', webpage, 'media data'),
|
|
playlist_id)
|
|
|
|
playlist_title = self._og_search_title(webpage)
|
|
|
|
entries = []
|
|
for video in playlist:
|
|
payload = video.get('payload')
|
|
if not payload:
|
|
continue
|
|
streamable_url = StreamableIE._extract_url(payload)
|
|
if streamable_url:
|
|
entries.append(self.url_result(
|
|
streamable_url, StreamableIE.ie_key()))
|
|
|
|
return self.playlist_result(entries, playlist_id, playlist_title)
|