You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
4.7 KiB

  1. # encoding: utf-8
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. clean_html,
  6. ExtractorError,
  7. )
  8. class RTLnowIE(InfoExtractor):
  9. """Information Extractor for RTLnow, RTL2now and VOXnow"""
  10. _VALID_URL = r'(?:http://)?(?P<url>(?P<base_url>rtl(?:(?P<is_rtl2>2)|-)now\.rtl(?(is_rtl2)2|)\.de/|(?:www\.)?voxnow\.de/)[a-zA-Z0-9-]+/[a-zA-Z0-9-]+\.php\?(?:container_id|film_id)=(?P<video_id>[0-9]+)&player=1(?:&season=[0-9]+)?(?:&.*)?)'
  11. _TESTS = [{
  12. u'url': u'http://rtl-now.rtl.de/ahornallee/folge-1.php?film_id=90419&player=1&season=1',
  13. u'file': u'90419.flv',
  14. u'info_dict': {
  15. u'upload_date': u'20070416',
  16. u'title': u'Ahornallee - Folge 1 - Der Einzug',
  17. u'description': u'Folge 1 - Der Einzug',
  18. },
  19. u'params': {
  20. u'skip_download': True,
  21. },
  22. u'skip': u'Only works from Germany',
  23. },
  24. {
  25. u'url': u'http://rtl2now.rtl2.de/aerger-im-revier/episode-15-teil-1.php?film_id=69756&player=1&season=2&index=5',
  26. u'file': u'69756.flv',
  27. u'info_dict': {
  28. u'upload_date': u'20120519',
  29. u'title': u'Ärger im Revier - Ein junger Ladendieb, ein handfester Streit...',
  30. u'description': u'Ärger im Revier - Ein junger Ladendieb, ein handfester Streit u.a.',
  31. u'thumbnail': u'http://autoimg.static-fra.de/rtl2now/219850/1500x1500/image2.jpg',
  32. },
  33. u'params': {
  34. u'skip_download': True,
  35. },
  36. u'skip': u'Only works from Germany',
  37. },
  38. {
  39. u'url': u'www.voxnow.de/voxtours/suedafrika-reporter-ii.php?film_id=13883&player=1&season=17',
  40. u'file': u'13883.flv',
  41. u'info_dict': {
  42. u'upload_date': u'20090627',
  43. u'title': u'Voxtours - Südafrika-Reporter II',
  44. u'description': u'Südafrika-Reporter II',
  45. },
  46. u'params': {
  47. u'skip_download': True,
  48. },
  49. }]
  50. def _real_extract(self,url):
  51. mobj = re.match(self._VALID_URL, url)
  52. webpage_url = u'http://' + mobj.group('url')
  53. video_page_url = u'http://' + mobj.group('base_url')
  54. video_id = mobj.group(u'video_id')
  55. webpage = self._download_webpage(webpage_url, video_id)
  56. note_m = re.search(r'''(?sx)
  57. <div[ ]style="margin-left:[ ]20px;[ ]font-size:[ ]13px;">(.*?)
  58. <div[ ]id="playerteaser">''', webpage)
  59. if note_m:
  60. msg = clean_html(note_m.group(1))
  61. raise ExtractorError(msg)
  62. video_title = self._html_search_regex(r'<title>(?P<title>[^<]+)</title>',
  63. webpage, u'title')
  64. playerdata_url = self._html_search_regex(r'\'playerdata\': \'(?P<playerdata_url>[^\']+)\'',
  65. webpage, u'playerdata_url')
  66. playerdata = self._download_webpage(playerdata_url, video_id)
  67. mobj = re.search(r'<title><!\[CDATA\[(?P<description>.+?)\s+- (?:Sendung )?vom (?P<upload_date_d>[0-9]{2})\.(?P<upload_date_m>[0-9]{2})\.(?:(?P<upload_date_Y>[0-9]{4})|(?P<upload_date_y>[0-9]{2})) [0-9]{2}:[0-9]{2} Uhr\]\]></title>', playerdata)
  68. if mobj:
  69. video_description = mobj.group(u'description')
  70. if mobj.group('upload_date_Y'):
  71. video_upload_date = mobj.group('upload_date_Y')
  72. else:
  73. video_upload_date = u'20' + mobj.group('upload_date_y')
  74. video_upload_date += mobj.group('upload_date_m')+mobj.group('upload_date_d')
  75. else:
  76. video_description = None
  77. video_upload_date = None
  78. self._downloader.report_warning(u'Unable to extract description and upload date')
  79. # Thumbnail: not every video has an thumbnail
  80. mobj = re.search(r'<meta property="og:image" content="(?P<thumbnail>[^"]+)">', webpage)
  81. if mobj:
  82. video_thumbnail = mobj.group(u'thumbnail')
  83. else:
  84. video_thumbnail = None
  85. mobj = re.search(r'<filename [^>]+><!\[CDATA\[(?P<url>rtmpe://(?:[^/]+/){2})(?P<play_path>[^\]]+)\]\]></filename>', playerdata)
  86. if mobj is None:
  87. raise ExtractorError(u'Unable to extract media URL')
  88. video_url = mobj.group(u'url')
  89. video_play_path = u'mp4:' + mobj.group(u'play_path')
  90. video_player_url = video_page_url + u'includes/vodplayer.swf'
  91. return [{
  92. 'id': video_id,
  93. 'url': video_url,
  94. 'play_path': video_play_path,
  95. 'page_url': video_page_url,
  96. 'player_url': video_player_url,
  97. 'ext': 'flv',
  98. 'title': video_title,
  99. 'description': video_description,
  100. 'upload_date': video_upload_date,
  101. 'thumbnail': video_thumbnail,
  102. }]