]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/foxsports.py
a3bb98377cf4feb769d89769c40fe7098ae20743
[youtubedl] / youtube_dl / extractor / foxsports.py
1 from __future__ import unicode_literals
2
3 from .common import InfoExtractor
4 from ..utils import (
5 smuggle_url,
6 update_url_query,
7 )
8
9
10 class FoxSportsIE(InfoExtractor):
11 _VALID_URL = r'https?://(?:www\.)?foxsports\.com/(?:[^/]+/)*(?P<id>[^/]+)'
12
13 _TEST = {
14 'url': 'http://www.foxsports.com/video?vid=432609859715',
15 'md5': 'b49050e955bebe32c301972e4012ac17',
16 'info_dict': {
17 'id': 'i0qKWsk3qJaM',
18 'ext': 'mp4',
19 'title': 'Courtney Lee on going up 2-0 in series vs. Blazers',
20 'description': 'Courtney Lee talks about Memphis being focused.',
21 'upload_date': '20150423',
22 'timestamp': 1429761109,
23 'uploader': 'NEWA-FNG-FOXSPORTS',
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
38 return self.url_result(smuggle_url(update_url_query(
39 config['releaseURL'], {
40 'mbr': 'true',
41 'switch': 'http',
42 }), {'force_smil_url': True}))