cgtn.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. from .common import InfoExtractor
  2. from ..utils import (
  3. try_get,
  4. unified_timestamp,
  5. )
  6. class CGTNIE(InfoExtractor):
  7. _VALID_URL = r'https?://news\.cgtn\.com/news/[0-9]{4}-[0-9]{2}-[0-9]{2}/[a-zA-Z0-9-]+-(?P<id>[a-zA-Z0-9-]+)/index\.html'
  8. _TESTS = [
  9. {
  10. 'url': 'https://news.cgtn.com/news/2021-03-09/Up-and-Out-of-Poverty-Ep-1-A-solemn-promise-YuOUaOzGQU/index.html',
  11. 'info_dict': {
  12. 'id': 'YuOUaOzGQU',
  13. 'ext': 'mp4',
  14. 'title': 'Up and Out of Poverty Ep. 1: A solemn promise',
  15. 'thumbnail': r're:^https?://.*\.jpg$',
  16. 'timestamp': 1615295940,
  17. 'upload_date': '20210309',
  18. },
  19. 'params': {
  20. 'skip_download': True
  21. }
  22. }, {
  23. 'url': 'https://news.cgtn.com/news/2021-06-06/China-Indonesia-vow-to-further-deepen-maritime-cooperation-10REvJCewCY/index.html',
  24. 'info_dict': {
  25. 'id': '10REvJCewCY',
  26. 'ext': 'mp4',
  27. 'title': 'China, Indonesia vow to further deepen maritime cooperation',
  28. 'thumbnail': r're:^https?://.*\.png$',
  29. 'description': 'China and Indonesia vowed to upgrade their cooperation into the maritime sector and also for political security, economy, and cultural and people-to-people exchanges.',
  30. 'author': 'CGTN',
  31. 'category': 'China',
  32. 'timestamp': 1622950200,
  33. 'upload_date': '20210606',
  34. },
  35. 'params': {
  36. 'skip_download': False
  37. }
  38. }
  39. ]
  40. def _real_extract(self, url):
  41. video_id = self._match_id(url)
  42. webpage = self._download_webpage(url, video_id)
  43. download_url = self._html_search_regex(r'data-video ="(?P<url>.+m3u8)"', webpage, 'download_url')
  44. datetime_str = self._html_search_regex(r'<span class="date">\s*(.+?)\s*</span>', webpage, 'datetime_str', fatal=False)
  45. return {
  46. 'id': video_id,
  47. 'title': self._og_search_title(webpage),
  48. 'description': self._og_search_description(webpage, default=None),
  49. 'thumbnail': self._og_search_thumbnail(webpage),
  50. 'formats': self._extract_m3u8_formats(download_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls'),
  51. 'category': self._html_search_regex(r'<span class="section">\s*(.+?)\s*</span>',
  52. webpage, 'category', fatal=False),
  53. 'author': self._html_search_regex(r'<div class="news-author-name">\s*(.+?)\s*</div>',
  54. webpage, 'author', default=None, fatal=False),
  55. 'timestamp': try_get(unified_timestamp(datetime_str), lambda x: x - 8 * 3600),
  56. }