yt-dlc/youtube_dlc/extractor/vh1.py

44 lines
1.5 KiB
Python
Raw Normal View History

2017-10-12 04:02:26 +00:00
# coding: utf-8
2014-06-07 14:39:08 +00:00
from __future__ import unicode_literals
2017-10-11 20:51:57 +00:00
from .mtv import MTVServicesInfoExtractor
2014-06-07 14:39:08 +00:00
# TODO Remove - Reason: Outdated Site
2014-05-16 22:15:02 +00:00
2017-10-11 20:51:57 +00:00
class VH1IE(MTVServicesInfoExtractor):
2014-06-07 14:39:08 +00:00
IE_NAME = 'vh1.com'
2017-10-11 20:51:57 +00:00
_FEED_URL = 'http://www.vh1.com/feeds/mrss/'
2014-06-07 14:39:08 +00:00
_TESTS = [{
2017-10-11 20:51:57 +00:00
'url': 'http://www.vh1.com/episodes/0umwpq/hip-hop-squares-kent-jones-vs-nick-young-season-1-ep-120',
2014-06-07 14:39:08 +00:00
'info_dict': {
2017-10-11 20:51:57 +00:00
'title': 'Kent Jones vs. Nick Young',
'description': 'Come to Play. Stay to Party. With Mike Epps, TIP, OShea Jackson Jr., T-Pain, Tisha Campbell-Martin and more.',
},
2017-10-11 20:51:57 +00:00
'playlist_mincount': 4,
2014-06-07 14:39:08 +00:00
}, {
2017-10-11 20:51:57 +00:00
# Clip
'url': 'http://www.vh1.com/video-clips/t74mif/scared-famous-scared-famous-extended-preview',
2014-06-07 14:39:08 +00:00
'info_dict': {
2017-10-11 20:51:57 +00:00
'id': '0a50c2d2-a86b-4141-9565-911c7e2d0b92',
2014-06-07 14:39:08 +00:00
'ext': 'mp4',
2017-10-11 20:51:57 +00:00
'title': 'Scared Famous|October 9, 2017|1|NO-EPISODE#|Scared Famous + Extended Preview',
'description': 'md5:eff5551a274c473a29463de40f7b09da',
'upload_date': '20171009',
'timestamp': 1507574700,
},
2017-10-11 20:51:57 +00:00
'params': {
# m3u8 download
'skip_download': True,
},
2014-06-07 14:39:08 +00:00
}]
2017-10-11 20:51:57 +00:00
_VALID_URL = r'https?://(?:www\.)?vh1\.com/(?:video-clips|episodes)/(?P<id>[^/?#.]+)'
2014-05-16 22:15:02 +00:00
def _real_extract(self, url):
2017-10-11 20:51:57 +00:00
playlist_id = self._match_id(url)
webpage = self._download_webpage(url, playlist_id)
mgid = self._extract_triforce_mgid(webpage)
videos_info = self._get_videos_info(mgid)
return videos_info