]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/nfl.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / nfl.py
CommitLineData
632e5684
NJ
1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
5
6from .common import InfoExtractor
7from ..utils import (
29f7c58a 8 clean_html,
9 determine_ext,
10 get_element_by_class,
632e5684
NJ
11)
12
13
29f7c58a 14class NFLBaseIE(InfoExtractor):
15 _VALID_URL_BASE = r'''(?x)
5b4c5463
S
16 https?://
17 (?P<host>
18 (?:www\.)?
19 (?:
20 (?:
21 nfl|
22 buffalobills|
23 miamidolphins|
24 patriots|
25 newyorkjets|
26 baltimoreravens|
27 bengals|
28 clevelandbrowns|
29 steelers|
30 houstontexans|
31 colts|
32 jaguars|
29f7c58a 33 (?:titansonline|tennesseetitans)|
5b4c5463 34 denverbroncos|
29f7c58a 35 (?:kc)?chiefs|
5b4c5463
S
36 raiders|
37 chargers|
38 dallascowboys|
39 giants|
40 philadelphiaeagles|
29f7c58a 41 (?:redskins|washingtonfootball)|
5b4c5463
S
42 chicagobears|
43 detroitlions|
44 packers|
45 vikings|
46 atlantafalcons|
47 panthers|
48 neworleanssaints|
49 buccaneers|
50 azcardinals|
29f7c58a 51 (?:stlouis|the)rams|
5b4c5463
S
52 49ers|
53 seahawks
54 )\.com|
55 .+?\.clubs\.nfl\.com
56 )
57 )/
5b4c5463 58 '''
29f7c58a 59 _VIDEO_CONFIG_REGEX = r'<script[^>]+id="[^"]*video-config-[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}[^"]*"[^>]*>\s*({.+})'
60 _WORKING = False
61
62 def _parse_video_config(self, video_config, display_id):
63 video_config = self._parse_json(video_config, display_id)
64 item = video_config['playlist'][0]
65 mcp_id = item.get('mcpID')
66 if mcp_id:
67 info = self.url_result(
68 'anvato:GXvEgwyJeWem8KCYXfeoHWknwP48Mboj:' + mcp_id,
69 'Anvato', mcp_id)
70 else:
71 media_id = item.get('id') or item['entityId']
72 title = item['title']
73 item_url = item['url']
74 info = {'id': media_id}
75 ext = determine_ext(item_url)
76 if ext == 'm3u8':
77 info['formats'] = self._extract_m3u8_formats(item_url, media_id, 'mp4')
78 self._sort_formats(info['formats'])
79 else:
80 info['url'] = item_url
81 if item.get('audio') is True:
82 info['vcodec'] = 'none'
83 is_live = video_config.get('live') is True
84 thumbnails = None
85 image_url = item.get(item.get('imageSrc')) or item.get(item.get('posterImage'))
86 if image_url:
87 thumbnails = [{
88 'url': image_url,
89 'ext': determine_ext(image_url, 'jpg'),
90 }]
91 info.update({
92 'title': self._live_title(title) if is_live else title,
93 'is_live': is_live,
94 'description': clean_html(item.get('description')),
95 'thumbnails': thumbnails,
96 })
97 return info
98
99
100class NFLIE(NFLBaseIE):
101 IE_NAME = 'nfl.com'
102 _VALID_URL = NFLBaseIE._VALID_URL_BASE + r'(?:videos?|listen|audio)/(?P<id>[^/#?&]+)'
5b4c5463 103 _TESTS = [{
29f7c58a 104 'url': 'https://www.nfl.com/videos/baker-mayfield-s-game-changing-plays-from-3-td-game-week-14',
5b4c5463 105 'info_dict': {
29f7c58a 106 'id': '899441',
5b4c5463 107 'ext': 'mp4',
29f7c58a 108 'title': "Baker Mayfield's game-changing plays from 3-TD game Week 14",
109 'description': 'md5:85e05a3cc163f8c344340f220521136d',
110 'upload_date': '20201215',
111 'timestamp': 1608009755,
ec85ded8 112 'thumbnail': r're:^https?://.*\.jpg$',
29f7c58a 113 'uploader': 'NFL',
7ebd5376 114 }
5b4c5463 115 }, {
29f7c58a 116 'url': 'https://www.chiefs.com/listen/patrick-mahomes-travis-kelce-react-to-win-over-dolphins-the-breakdown',
117 'md5': '6886b32c24b463038c760ceb55a34566',
5b4c5463 118 'info_dict': {
29f7c58a 119 'id': 'd87e8790-3e14-11eb-8ceb-ff05c2867f99',
120 'ext': 'mp3',
121 'title': 'Patrick Mahomes, Travis Kelce React to Win Over Dolphins | The Breakdown',
122 'description': 'md5:12ada8ee70e6762658c30e223e095075',
5b4c5463
S
123 }
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)