]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/nfl.py
Fix bugs in `PlaylistEntries`
[yt-dlp.git] / yt_dlp / extractor / nfl.py
CommitLineData
632e5684
NJ
1import re
2
3from .common import InfoExtractor
4from ..utils import (
29f7c58a 5 clean_html,
6 determine_ext,
7 get_element_by_class,
632e5684
NJ
8)
9
10
29f7c58a 11class NFLBaseIE(InfoExtractor):
12 _VALID_URL_BASE = r'''(?x)
5b4c5463
S
13 https?://
14 (?P<host>
15 (?:www\.)?
16 (?:
17 (?:
18 nfl|
19 buffalobills|
20 miamidolphins|
21 patriots|
22 newyorkjets|
23 baltimoreravens|
24 bengals|
25 clevelandbrowns|
26 steelers|
27 houstontexans|
28 colts|
29 jaguars|
29f7c58a 30 (?:titansonline|tennesseetitans)|
5b4c5463 31 denverbroncos|
29f7c58a 32 (?:kc)?chiefs|
5b4c5463
S
33 raiders|
34 chargers|
35 dallascowboys|
36 giants|
37 philadelphiaeagles|
29f7c58a 38 (?:redskins|washingtonfootball)|
5b4c5463
S
39 chicagobears|
40 detroitlions|
41 packers|
42 vikings|
43 atlantafalcons|
44 panthers|
45 neworleanssaints|
46 buccaneers|
47 azcardinals|
29f7c58a 48 (?:stlouis|the)rams|
5b4c5463
S
49 49ers|
50 seahawks
51 )\.com|
52 .+?\.clubs\.nfl\.com
53 )
54 )/
5b4c5463 55 '''
dd4411aa 56 _VIDEO_CONFIG_REGEX = r'<script[^>]+id="[^"]*video-config-[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}[^"]*"[^>]*>\s*({.+});?\s*</script>'
29f7c58a 57
58 def _parse_video_config(self, video_config, display_id):
59 video_config = self._parse_json(video_config, display_id)
60 item = video_config['playlist'][0]
61 mcp_id = item.get('mcpID')
62 if mcp_id:
63 info = self.url_result(
64 'anvato:GXvEgwyJeWem8KCYXfeoHWknwP48Mboj:' + mcp_id,
65 'Anvato', mcp_id)
66 else:
67 media_id = item.get('id') or item['entityId']
dd4411aa 68 title = item.get('title')
29f7c58a 69 item_url = item['url']
70 info = {'id': media_id}
71 ext = determine_ext(item_url)
72 if ext == 'm3u8':
73 info['formats'] = self._extract_m3u8_formats(item_url, media_id, 'mp4')
74 self._sort_formats(info['formats'])
75 else:
76 info['url'] = item_url
77 if item.get('audio') is True:
78 info['vcodec'] = 'none'
79 is_live = video_config.get('live') is True
80 thumbnails = None
81 image_url = item.get(item.get('imageSrc')) or item.get(item.get('posterImage'))
82 if image_url:
83 thumbnails = [{
84 'url': image_url,
85 'ext': determine_ext(image_url, 'jpg'),
86 }]
87 info.update({
39ca3b5c 88 'title': title,
29f7c58a 89 'is_live': is_live,
90 'description': clean_html(item.get('description')),
91 'thumbnails': thumbnails,
92 })
93 return info
94
95
96class NFLIE(NFLBaseIE):
97 IE_NAME = 'nfl.com'
98 _VALID_URL = NFLBaseIE._VALID_URL_BASE + r'(?:videos?|listen|audio)/(?P<id>[^/#?&]+)'
5b4c5463 99 _TESTS = [{
29f7c58a 100 'url': 'https://www.nfl.com/videos/baker-mayfield-s-game-changing-plays-from-3-td-game-week-14',
5b4c5463 101 'info_dict': {
29f7c58a 102 'id': '899441',
5b4c5463 103 'ext': 'mp4',
29f7c58a 104 'title': "Baker Mayfield's game-changing plays from 3-TD game Week 14",
105 'description': 'md5:85e05a3cc163f8c344340f220521136d',
106 'upload_date': '20201215',
107 'timestamp': 1608009755,
ec85ded8 108 'thumbnail': r're:^https?://.*\.jpg$',
29f7c58a 109 'uploader': 'NFL',
dd4411aa 110 'tags': 'count:6',
111 'duration': 157,
112 'categories': 'count:3',
7ebd5376 113 }
5b4c5463 114 }, {
29f7c58a 115 'url': 'https://www.chiefs.com/listen/patrick-mahomes-travis-kelce-react-to-win-over-dolphins-the-breakdown',
116 'md5': '6886b32c24b463038c760ceb55a34566',
5b4c5463 117 'info_dict': {
29f7c58a 118 'id': 'd87e8790-3e14-11eb-8ceb-ff05c2867f99',
119 'ext': 'mp3',
120 'title': 'Patrick Mahomes, Travis Kelce React to Win Over Dolphins | The Breakdown',
121 'description': 'md5:12ada8ee70e6762658c30e223e095075',
dd4411aa 122 },
123 'skip': 'HTTP Error 404: Not Found',
5b4c5463 124 }, {
29f7c58a 125 'url': 'https://www.buffalobills.com/video/buffalo-bills-military-recognition-week-14',
5b4c5463
S
126 'only_matching': True,
127 }, {
29f7c58a 128 'url': 'https://www.raiders.com/audio/instant-reactions-raiders-week-14-loss-to-indianapolis-colts-espn-jason-fitz',
5b4c5463
S
129 'only_matching': True,
130 }]
5f4c3188 131
632e5684 132 def _real_extract(self, url):
29f7c58a 133 display_id = self._match_id(url)
134 webpage = self._download_webpage(url, display_id)
135 return self._parse_video_config(self._search_regex(
136 self._VIDEO_CONFIG_REGEX, webpage, 'video config'), display_id)
5f4c3188 137
632e5684 138
29f7c58a 139class NFLArticleIE(NFLBaseIE):
140 IE_NAME = 'nfl.com:article'
141 _VALID_URL = NFLBaseIE._VALID_URL_BASE + r'news/(?P<id>[^/#?&]+)'
142 _TEST = {
143 'url': 'https://www.buffalobills.com/news/the-only-thing-we-ve-earned-is-the-noise-bills-coaches-discuss-handling-rising-e',
144 'info_dict': {
145 'id': 'the-only-thing-we-ve-earned-is-the-noise-bills-coaches-discuss-handling-rising-e',
146 'title': "'The only thing we've earned is the noise' | Bills coaches discuss handling rising expectations",
147 },
148 'playlist_count': 4,
149 }
632e5684 150
29f7c58a 151 def _real_extract(self, url):
152 display_id = self._match_id(url)
153 webpage = self._download_webpage(url, display_id)
154 entries = []
155 for video_config in re.findall(self._VIDEO_CONFIG_REGEX, webpage):
156 entries.append(self._parse_video_config(video_config, display_id))
157 title = clean_html(get_element_by_class(
158 'nfl-c-article__title', webpage)) or self._html_search_meta(
159 ['og:title', 'twitter:title'], webpage)
160 return self.playlist_result(entries, display_id, title)