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.

35 lines
1.2 KiB

  1. from __future__ import unicode_literals
  2. from .common import InfoExtractor
  3. class AlJazeeraIE(InfoExtractor):
  4. _VALID_URL = r'http://www\.aljazeera\.com/programmes/.*?/(?P<id>[^/]+)\.html'
  5. _TEST = {
  6. 'url': 'http://www.aljazeera.com/programmes/the-slum/2014/08/deliverance-201482883754237240.html',
  7. 'info_dict': {
  8. 'id': '3792260579001',
  9. 'ext': 'mp4',
  10. 'title': 'The Slum - Episode 1: Deliverance',
  11. 'description': 'As a birth attendant advocating for family planning, Remy is on the frontline of Tondo\'s battle with overcrowding.',
  12. 'uploader': 'Al Jazeera English',
  13. },
  14. 'add_ie': ['Brightcove'],
  15. }
  16. def _real_extract(self, url):
  17. program_name = self._match_id(url)
  18. webpage = self._download_webpage(url, program_name)
  19. brightcove_id = self._search_regex(
  20. r'RenderPagesVideo\(\'(.+?)\'', webpage, 'brightcove id')
  21. return {
  22. '_type': 'url',
  23. 'url': (
  24. 'brightcove:'
  25. 'playerKey=AQ~~%2CAAAAmtVJIFk~%2CTVGOQ5ZTwJbeMWnq5d_H4MOM57xfzApc'
  26. '&%40videoPlayer={0}'.format(brightcove_id)
  27. ),
  28. 'ie_key': 'Brightcove',
  29. }