mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[mtv81] Add extractor (closes #7619)
This commit is contained in:
parent
661cc229d2
commit
008f247077
|
@ -553,6 +553,7 @@
|
||||||
MTVVideoIE,
|
MTVVideoIE,
|
||||||
MTVServicesEmbeddedIE,
|
MTVServicesEmbeddedIE,
|
||||||
MTVDEIE,
|
MTVDEIE,
|
||||||
|
MTV81IE,
|
||||||
)
|
)
|
||||||
from .muenchentv import MuenchenTVIE
|
from .muenchentv import MuenchenTVIE
|
||||||
from .musicplayon import MusicPlayOnIE
|
from .musicplayon import MusicPlayOnIE
|
||||||
|
|
|
@ -327,6 +327,35 @@ class MTVIE(MTVServicesInfoExtractor):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
class MTV81IE(InfoExtractor):
|
||||||
|
IE_NAME = 'mtv81'
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?mtv81\.com/videos/(?P<id>[^/?#.]+)'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.mtv81.com/videos/artist-to-watch/the-godfather-of-japanese-hip-hop-segment-1/',
|
||||||
|
'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
|
||||||
|
'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
|
||||||
|
'timestamp': 1468846800,
|
||||||
|
'upload_date': '20160718',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
def _extract_mgid(self, webpage):
|
||||||
|
return self._search_regex(
|
||||||
|
r'getTheVideo\((["\'])(?P<id>mgid:.+?)\1', webpage,
|
||||||
|
'mgid', group='id')
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
mgid = self._extract_mgid(webpage)
|
||||||
|
return self.url_result('http://media.mtvnservices.com/embed/%s' % mgid)
|
||||||
|
|
||||||
|
|
||||||
class MTVVideoIE(MTVServicesInfoExtractor):
|
class MTVVideoIE(MTVServicesInfoExtractor):
|
||||||
IE_NAME = 'mtv:video'
|
IE_NAME = 'mtv:video'
|
||||||
_VALID_URL = r'''(?x)^https?://
|
_VALID_URL = r'''(?x)^https?://
|
||||||
|
|
Loading…
Reference in a new issue