mirror of https://github.com/yt-dlp/yt-dlp.git
[fxnetworks] extend _VALID_URL to support simpsonsworld.com
This commit is contained in:
parent
2cabee2a7d
commit
53fef319f1
|
@ -11,8 +11,8 @@ from ..utils import (
|
||||||
|
|
||||||
|
|
||||||
class FXNetworksIE(AdobePassIE):
|
class FXNetworksIE(AdobePassIE):
|
||||||
_VALID_URL = r'https?://(?:www\.)?fxnetworks\.com/video/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?(?:fxnetworks|simpsonsworld)\.com/video/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://www.fxnetworks.com/video/719841347694',
|
'url': 'http://www.fxnetworks.com/video/719841347694',
|
||||||
'md5': '1447d4722e42ebca19e5232ab93abb22',
|
'md5': '1447d4722e42ebca19e5232ab93abb22',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -26,7 +26,10 @@ class FXNetworksIE(AdobePassIE):
|
||||||
'timestamp': 1467844741,
|
'timestamp': 1467844741,
|
||||||
},
|
},
|
||||||
'add_ie': ['ThePlatform'],
|
'add_ie': ['ThePlatform'],
|
||||||
}
|
}, {
|
||||||
|
'url': 'http://www.simpsonsworld.com/video/716094019682',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
@ -35,7 +38,7 @@ class FXNetworksIE(AdobePassIE):
|
||||||
self.raise_geo_restricted()
|
self.raise_geo_restricted()
|
||||||
video_data = extract_attributes(self._search_regex(
|
video_data = extract_attributes(self._search_regex(
|
||||||
r'(<a.+?rel="http://link\.theplatform\.com/s/.+?</a>)', webpage, 'video data'))
|
r'(<a.+?rel="http://link\.theplatform\.com/s/.+?</a>)', webpage, 'video data'))
|
||||||
player_type = self._search_regex(r'playerType\s*=\s*[\'"]([^\'"]+)', webpage, 'player type', fatal=False)
|
player_type = self._search_regex(r'playerType\s*=\s*[\'"]([^\'"]+)', webpage, 'player type', default=None)
|
||||||
release_url = video_data['rel']
|
release_url = video_data['rel']
|
||||||
title = video_data['data-title']
|
title = video_data['data-title']
|
||||||
rating = video_data.get('data-rating')
|
rating = video_data.get('data-rating')
|
||||||
|
|
Loading…
Reference in New Issue