2014-01-21 20:54:47 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .mtv import MTVServicesInfoExtractor
|
|
|
|
|
|
|
|
|
2018-05-16 18:49:35 +02:00
|
|
|
class BellatorIE(MTVServicesInfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?bellator\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
|
2016-07-17 13:34:25 +02:00
|
|
|
_TESTS = [{
|
2018-05-16 18:49:35 +02:00
|
|
|
'url': 'http://www.bellator.com/fight/atwr7k/bellator-158-michael-page-vs-evangelista-cyborg',
|
2014-01-21 20:54:47 +01:00
|
|
|
'info_dict': {
|
2020-05-12 21:48:16 +02:00
|
|
|
'title': 'Michael Page vs. Evangelista Cyborg',
|
|
|
|
'description': 'md5:0d917fc00ffd72dd92814963fc6cbb05',
|
2014-01-21 20:54:47 +01:00
|
|
|
},
|
2020-05-12 21:48:16 +02:00
|
|
|
'playlist_count': 3,
|
2016-11-29 17:06:01 +01:00
|
|
|
}, {
|
2018-05-16 18:49:35 +02:00
|
|
|
'url': 'http://www.bellator.com/video-clips/bw6k7n/bellator-158-foundations-michael-venom-page',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
2019-07-12 23:50:37 +02:00
|
|
|
_FEED_URL = 'http://www.bellator.com/feeds/mrss/'
|
2018-05-16 18:49:35 +02:00
|
|
|
_GEO_COUNTRIES = ['US']
|
|
|
|
|
|
|
|
|
|
|
|
class ParamountNetworkIE(MTVServicesInfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?paramountnetwork\.com/[^/]+/[\da-z]{6}(?:[/?#&]|$)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://www.paramountnetwork.com/episodes/j830qm/lip-sync-battle-joel-mchale-vs-jim-rash-season-2-ep-13',
|
2016-11-29 17:06:01 +01:00
|
|
|
'info_dict': {
|
|
|
|
'id': '37ace3a8-1df6-48be-85b8-38df8229e241',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Lip Sync Battle|April 28, 2016|2|209|Joel McHale Vs. Jim Rash|Act 1',
|
|
|
|
'description': 'md5:a739ca8f978a7802f67f8016d27ce114',
|
|
|
|
},
|
2018-05-16 18:49:35 +02:00
|
|
|
'params': {
|
|
|
|
# m3u8 download
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2016-07-17 13:34:25 +02:00
|
|
|
}]
|
2014-01-21 20:54:47 +01:00
|
|
|
|
2021-01-16 13:40:15 +01:00
|
|
|
_FEED_URL = 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
|
2017-10-13 10:41:57 +02:00
|
|
|
_GEO_COUNTRIES = ['US']
|
2018-09-28 16:13:25 +02:00
|
|
|
|
2021-01-16 13:40:15 +01:00
|
|
|
def _get_feed_query(self, uri):
|
|
|
|
return {
|
|
|
|
'arcEp': 'paramountnetwork.com',
|
2021-01-16 18:12:05 +01:00
|
|
|
'imageEp': 'paramountnetwork.com',
|
2021-01-16 13:40:15 +01:00
|
|
|
'mgid': uri,
|
|
|
|
}
|