dcn.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import compat_urllib_request
  5. class DcnIE(InfoExtractor):
  6. _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?(?:video/.+|show/\d+/.+?)/(?P<id>\d+)/?'
  7. _TEST = {
  8. 'url': 'http://www.dcndigital.ae/#/show/199074/%D8%B1%D8%AD%D9%84%D8%A9-%D8%A7%D9%84%D8%B9%D9%85%D8%B1-%D8%A7%D9%84%D8%AD%D9%84%D9%82%D8%A9-1/17375/6887',
  9. 'info_dict':
  10. {
  11. 'id': '17375',
  12. 'ext': 'm3u8',
  13. 'title': 'رحلة العمر : الحلقة 1',
  14. 'description': 'في هذه الحلقة من برنامج رحلة العمر يقدّم الدكتور عمر عبد الكافي تبسيطاً لمناسك الحج والعمرة ويجيب مباشرة على استفسارات حجاج بيت الله الحرام بخصوص مناسك الحج والعمرة\n1',
  15. 'thumbnail': 'http://admin.mangomolo.com/analytics/uploads/71/images/media/2/2cefc09d7bec80afa754682f40e49503.jpg',
  16. 'duration': '2041'
  17. },
  18. 'params': {
  19. # m3u8 download
  20. 'skip_download': True,
  21. },
  22. }
  23. def _real_extract(self, url):
  24. video_id = self._match_id(url)
  25. request = compat_urllib_request.Request(
  26. 'http://admin.mangomolo.com/analytics/index.php/plus/video?id=' + video_id,
  27. headers={'Origin': 'http://www.dcndigital.ae'}
  28. )
  29. json_data = self._download_json(request, video_id)
  30. title = json_data['title_ar']
  31. thumbnail = 'http://admin.mangomolo.com/analytics/' + json_data['img']
  32. duration = json_data['duration']
  33. description = json_data['description_ar']
  34. webpage = self._download_webpage(
  35. 'http://admin.mangomolo.com/analytics/index.php/customers/embed/video?id=' + json_data['id'] + '&user_id=' + json_data['user_id'] + '&countries=Q0M=&w=100%&h=100%&filter=DENY&signature=' + json_data['signature'],
  36. video_id
  37. )
  38. m3u8_url = self._html_search_regex(
  39. r'file:\s*"([^"]+)',
  40. webpage,
  41. 'm3u8_url'
  42. )
  43. formats = self._extract_m3u8_formats(m3u8_url, video_id)
  44. return {
  45. 'id': video_id,
  46. 'title': title,
  47. 'thumbnail': thumbnail,
  48. 'duration': duration,
  49. 'description': description,
  50. 'formats': formats,
  51. }