]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/foxsports.py
[videa] Improve and simplify (closes #8181, closes #11133)
[yt-dlp.git] / youtube_dl / extractor / foxsports.py
CommitLineData
6a8422b9
S
1from __future__ import unicode_literals
2
3from .common import InfoExtractor
6cd64b68
RA
4from ..utils import (
5 smuggle_url,
6 update_url_query,
7)
6a8422b9
S
8
9
10class FoxSportsIE(InfoExtractor):
de765f6c 11 _VALID_URL = r'https?://(?:www\.)?foxsports\.com/(?:[^/]+/)*(?P<id>[^/]+)'
6a8422b9
S
12
13 _TEST = {
14 'url': 'http://www.foxsports.com/video?vid=432609859715',
6cd64b68 15 'md5': 'b49050e955bebe32c301972e4012ac17',
6a8422b9 16 'info_dict': {
6cd64b68
RA
17 'id': 'i0qKWsk3qJaM',
18 'ext': 'mp4',
6a8422b9
S
19 'title': 'Courtney Lee on going up 2-0 in series vs. Blazers',
20 'description': 'Courtney Lee talks about Memphis being focused.',
6cd64b68
RA
21 'upload_date': '20150423',
22 'timestamp': 1429761109,
23 'uploader': 'NEWA-FNG-FOXSPORTS',
6a8422b9
S
24 },
25 'add_ie': ['ThePlatform'],
26 }
27
28 def _real_extract(self, url):
29 video_id = self._match_id(url)
30
31 webpage = self._download_webpage(url, video_id)
32
33 config = self._parse_json(
34 self._search_regex(
35 r"data-player-config='([^']+)'", webpage, 'data player config'),
36 video_id)
37
6cd64b68
RA
38 return self.url_result(smuggle_url(update_url_query(
39 config['releaseURL'], {
40 'mbr': 'true',
41 'switch': 'http',
42 }), {'force_smil_url': True}))