1 from __future__ import unicode_literals
3 from .common import InfoExtractor
10 class FoxSportsIE(InfoExtractor):
11 _VALID_URL = r'https?://(?:www\.)?foxsports\.com/(?:[^/]+/)*(?P<id>[^/]+)'
14 'url': 'http://www.foxsports.com/video?vid=432609859715',
15 'md5': 'b49050e955bebe32c301972e4012ac17',
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',
25 'add_ie': ['ThePlatform'],
28 def _real_extract(self, url):
29 video_id = self._match_id(url)
31 webpage = self._download_webpage(url, video_id)
33 config = self._parse_json(
35 r"data-player-config='([^']+)'", webpage, 'data player config'),
38 return self.url_result(smuggle_url(update_url_query(
39 config['releaseURL'], {
42 }), {'force_smil_url': True}))