logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

uktvplay.py (1369B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. class UKTVPlayIE(InfoExtractor):
  5. _VALID_URL = r'https?://uktvplay\.(?:uktv\.)?co\.uk/(?:.+?\?.*?\bvideo=|([^/]+/)*watch-online/)(?P<id>\d+)'
  6. _TESTS = [{
  7. 'url': 'https://uktvplay.uktv.co.uk/shows/world-at-war/c/200/watch-online/?video=2117008346001',
  8. 'info_dict': {
  9. 'id': '2117008346001',
  10. 'ext': 'mp4',
  11. 'title': 'Pincers',
  12. 'description': 'Pincers',
  13. 'uploader_id': '1242911124001',
  14. 'upload_date': '20130124',
  15. 'timestamp': 1359049267,
  16. },
  17. 'params': {
  18. # m3u8 download
  19. 'skip_download': True,
  20. },
  21. 'expected_warnings': ['Failed to download MPD manifest']
  22. }, {
  23. 'url': 'https://uktvplay.uktv.co.uk/shows/africa/watch-online/5983349675001',
  24. 'only_matching': True,
  25. }]
  26. # BRIGHTCOVE_URL_TEMPLATE = 'https://players.brightcove.net/1242911124001/OrCyvJ2gyL_default/index.html?videoId=%s'
  27. BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1242911124001/H1xnMOqP_default/index.html?videoId=%s'
  28. def _real_extract(self, url):
  29. video_id = self._match_id(url)
  30. return self.url_result(
  31. self.BRIGHTCOVE_URL_TEMPLATE % video_id,
  32. 'BrightcoveNew', video_id)