logo

youtube-dl

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

playwire.py (2408B)


  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. dict_get,
  6. float_or_none,
  7. )
  8. class PlaywireIE(InfoExtractor):
  9. _VALID_URL = r'https?://(?:config|cdn)\.playwire\.com(?:/v2)?/(?P<publisher_id>\d+)/(?:videos/v2|embed|config)/(?P<id>\d+)'
  10. _TESTS = [{
  11. 'url': 'http://config.playwire.com/14907/videos/v2/3353705/player.json',
  12. 'md5': 'e6398701e3595888125729eaa2329ed9',
  13. 'info_dict': {
  14. 'id': '3353705',
  15. 'ext': 'mp4',
  16. 'title': 'S04_RM_UCL_Rus',
  17. 'thumbnail': r're:^https?://.*\.png$',
  18. 'duration': 145.94,
  19. },
  20. }, {
  21. # m3u8 in f4m
  22. 'url': 'http://config.playwire.com/21772/videos/v2/4840492/zeus.json',
  23. 'info_dict': {
  24. 'id': '4840492',
  25. 'ext': 'mp4',
  26. 'title': 'ITV EL SHOW FULL',
  27. },
  28. 'params': {
  29. # m3u8 download
  30. 'skip_download': True,
  31. },
  32. }, {
  33. # Multiple resolutions while bitrates missing
  34. 'url': 'http://cdn.playwire.com/11625/embed/85228.html',
  35. 'only_matching': True,
  36. }, {
  37. 'url': 'http://config.playwire.com/12421/videos/v2/3389892/zeus.json',
  38. 'only_matching': True,
  39. }, {
  40. 'url': 'http://cdn.playwire.com/v2/12342/config/1532636.json',
  41. 'only_matching': True,
  42. }]
  43. def _real_extract(self, url):
  44. mobj = re.match(self._VALID_URL, url)
  45. publisher_id, video_id = mobj.group('publisher_id'), mobj.group('id')
  46. player = self._download_json(
  47. 'http://config.playwire.com/%s/videos/v2/%s/zeus.json' % (publisher_id, video_id),
  48. video_id)
  49. title = player['settings']['title']
  50. duration = float_or_none(player.get('duration'), 1000)
  51. content = player['content']
  52. thumbnail = content.get('poster')
  53. src = content['media']['f4m']
  54. formats = self._extract_f4m_formats(src, video_id, m3u8_id='hls')
  55. for a_format in formats:
  56. if not dict_get(a_format, ['tbr', 'width', 'height']):
  57. a_format['quality'] = 1 if '-hd.' in a_format['url'] else 0
  58. self._sort_formats(formats)
  59. return {
  60. 'id': video_id,
  61. 'title': title,
  62. 'thumbnail': thumbnail,
  63. 'duration': duration,
  64. 'formats': formats,
  65. }