]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/vh1.py
[tiktok] Fix `extractor_key` used in archive
[yt-dlp.git] / yt_dlp / extractor / vh1.py
CommitLineData
1baba7f4 1# coding: utf-8
f2741c8d
PH
2from __future__ import unicode_literals
3
344d1a67 4from .mtv import MTVServicesInfoExtractor
f2741c8d 5
cf7cb942
U
6# TODO Remove - Reason: Outdated Site
7
3ee4b60d 8
344d1a67 9class VH1IE(MTVServicesInfoExtractor):
f2741c8d 10 IE_NAME = 'vh1.com'
344d1a67 11 _FEED_URL = 'http://www.vh1.com/feeds/mrss/'
f2741c8d 12 _TESTS = [{
54153fb7 13 'url': 'https://www.vh1.com/episodes/0aqivv/nick-cannon-presents-wild-n-out-foushee-season-16-ep-12',
f2741c8d 14 'info_dict': {
54153fb7
S
15 'title': 'Fousheé',
16 'description': 'Fousheé joins Team Evolutions fight against Nick and Team Revolution in Baby Daddy, Baby Mama; Kick Em Out the Classroom; Backseat of My Ride and Wildstyle; and Fousheé performs.',
1c0ade7a 17 },
344d1a67 18 'playlist_mincount': 4,
54153fb7 19 'skip': '404 Not found',
f2741c8d 20 }, {
344d1a67 21 # Clip
54153fb7 22 'url': 'https://www.vh1.com/video-clips/e0sja0/nick-cannon-presents-wild-n-out-foushee-clap-for-him',
f2741c8d 23 'info_dict': {
54153fb7 24 'id': 'a07563f7-a37b-4e7f-af68-85855c2c7cc3',
f2741c8d 25 'ext': 'mp4',
54153fb7
S
26 'title': 'Fousheé - "clap for him"',
27 'description': 'Singer Fousheé hits the Wild N Out: In the Dark stage with a performance of the tongue-in-cheek track "clap for him" from her 2021 album "time machine."',
28 'upload_date': '20210826',
1c0ade7a 29 },
344d1a67
RA
30 'params': {
31 # m3u8 download
32 'skip_download': True,
1c0ade7a 33 },
f2741c8d
PH
34 }]
35
344d1a67 36 _VALID_URL = r'https?://(?:www\.)?vh1\.com/(?:video-clips|episodes)/(?P<id>[^/?#.]+)'