srf.py 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. determine_ext,
  7. parse_iso8601,
  8. xpath_text,
  9. )
  10. class SrfIE(InfoExtractor):
  11. _VALID_URL = r'http://www\.srf\.ch/play(?:er)?/tv/[^/]+/video/(?P<display_id>[^?]+)\?id=(?P<id>[0-9a-f\-]{36})'
  12. _TESTS = [{
  13. 'url': 'http://www.srf.ch/play/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
  14. 'md5': '4cd93523723beff51bb4bee974ee238d',
  15. 'info_dict': {
  16. 'id': '28e1a57d-5b76-4399-8ab3-9097f071e6c5',
  17. 'display_id': 'snowden-beantragt-asyl-in-russland',
  18. 'ext': 'm4v',
  19. 'upload_date': '20130701',
  20. 'title': 'Snowden beantragt Asyl in Russland',
  21. 'timestamp': 1372713995,
  22. }
  23. }, {
  24. # No Speichern (Save) button
  25. 'url': 'http://www.srf.ch/play/tv/top-gear/video/jaguar-xk120-shadow-und-tornado-dampflokomotive?id=677f5829-e473-4823-ac83-a1087fe97faa',
  26. 'info_dict': {
  27. 'id': '677f5829-e473-4823-ac83-a1087fe97faa',
  28. 'display_id': 'jaguar-xk120-shadow-und-tornado-dampflokomotive',
  29. 'ext': 'mp4',
  30. 'upload_date': '20130710',
  31. 'title': 'Jaguar XK120, Shadow und Tornado-Dampflokomotive',
  32. 'timestamp': 1373493600,
  33. },
  34. 'params': {
  35. # Require ffmpeg/avconv
  36. 'skip_download': True,
  37. }
  38. }, {
  39. 'url': 'http://www.srf.ch/player/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
  40. 'only_matching': True,
  41. }]
  42. def _real_extract(self, url):
  43. video_id = self._match_id(url)
  44. video_data = self._download_xml(
  45. 'http://il.srgssr.ch/integrationlayer/1.0/ue/srf/video/play/%s.xml' % video_id,
  46. video_id)
  47. display_id = re.match(self._VALID_URL, url).group('display_id')
  48. title = xpath_text(
  49. video_data, './AssetMetadatas/AssetMetadata/title', fatal=True)
  50. thumbnails = [{
  51. 'url': s.text
  52. } for s in video_data.findall('.//ImageRepresentation/url')]
  53. timestamp = parse_iso8601(xpath_text(video_data, './createdDate'))
  54. # The <duration> field in XML is different from the exact duration, skipping
  55. formats = []
  56. for item in video_data.findall('./Playlists/Playlist') + video_data.findall('./Downloads/Download'):
  57. for url_node in item.findall('url'):
  58. quality = url_node.attrib['quality']
  59. full_url = url_node.text
  60. original_ext = determine_ext(full_url)
  61. format_id = '%s-%s' % (quality, item.attrib['protocol'])
  62. if original_ext == 'f4m':
  63. formats.extend(self._extract_f4m_formats(
  64. full_url + '?hdcore=3.4.0', video_id, f4m_id=format_id))
  65. elif original_ext == 'm3u8':
  66. formats.extend(self._extract_m3u8_formats(
  67. full_url, video_id, 'mp4', m3u8_id=format_id))
  68. else:
  69. formats.append({
  70. 'url': full_url,
  71. 'ext': 'mp4' if original_ext == 'm3u8' else original_ext,
  72. 'format_id': format_id,
  73. 'quality': 0 if 'HD' in quality else -1,
  74. 'preference': 1,
  75. })
  76. self._sort_formats(formats)
  77. return {
  78. 'id': video_id,
  79. 'display_id': display_id,
  80. 'formats': formats,
  81. 'title': title,
  82. 'thumbnails': thumbnails,
  83. 'timestamp': timestamp,
  84. }