mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
86e5f3ed2e
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
31 lines
1 KiB
Python
31 lines
1 KiB
Python
from .common import InfoExtractor
|
|
|
|
|
|
class FoxSportsIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?foxsports\.com/(?:[^/]+/)*video/(?P<id>\d+)'
|
|
|
|
_TEST = {
|
|
'url': 'http://www.foxsports.com/tennessee/video/432609859715',
|
|
'md5': 'b49050e955bebe32c301972e4012ac17',
|
|
'info_dict': {
|
|
'id': '432609859715',
|
|
'ext': 'mp4',
|
|
'title': 'Courtney Lee on going up 2-0 in series vs. Blazers',
|
|
'description': 'Courtney Lee talks about Memphis being focused.',
|
|
# TODO: fix timestamp
|
|
'upload_date': '19700101', # '20150423',
|
|
# 'timestamp': 1429761109,
|
|
'uploader': 'NEWA-FNG-FOXSPORTS',
|
|
},
|
|
'params': {
|
|
# m3u8 download
|
|
'skip_download': True,
|
|
},
|
|
'add_ie': ['ThePlatform'],
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
return self.url_result(
|
|
'https://feed.theplatform.com/f/BKQ29B/foxsports-all?byId=' + video_id, 'ThePlatformFeed')
|