vh1.py 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. from .mtv import MTVServicesInfoExtractor
  2. # TODO: Remove - Reason: Outdated Site
  3. class VH1IE(MTVServicesInfoExtractor):
  4. IE_NAME = 'vh1.com'
  5. _FEED_URL = 'http://www.vh1.com/feeds/mrss/'
  6. _TESTS = [{
  7. 'url': 'https://www.vh1.com/episodes/0aqivv/nick-cannon-presents-wild-n-out-foushee-season-16-ep-12',
  8. 'info_dict': {
  9. 'title': 'Fousheé',
  10. '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.',
  11. },
  12. 'playlist_mincount': 4,
  13. 'skip': '404 Not found',
  14. }, {
  15. # Clip
  16. 'url': 'https://www.vh1.com/video-clips/e0sja0/nick-cannon-presents-wild-n-out-foushee-clap-for-him',
  17. 'info_dict': {
  18. 'id': 'a07563f7-a37b-4e7f-af68-85855c2c7cc3',
  19. 'ext': 'mp4',
  20. 'title': 'Fousheé - "clap for him"',
  21. '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."',
  22. 'upload_date': '20210826',
  23. },
  24. 'params': {
  25. # m3u8 download
  26. 'skip_download': True,
  27. },
  28. }]
  29. _VALID_URL = r'https?://(?:www\.)?vh1\.com/(?:video-clips|episodes)/(?P<id>[^/?#.]+)'