logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

sztvhu.py (1673B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. class SztvHuIE(InfoExtractor):
  5. _VALID_URL = r'https?://(?:(?:www\.)?sztv\.hu|www\.tvszombathely\.hu)/(?:[^/]+)/.+-(?P<id>[0-9]+)'
  6. _TEST = {
  7. 'url': 'http://sztv.hu/hirek/cserkeszek-nepszerusitettek-a-kornyezettudatos-eletmodot-a-savaria-teren-20130909',
  8. 'md5': 'a6df607b11fb07d0e9f2ad94613375cb',
  9. 'info_dict': {
  10. 'id': '20130909',
  11. 'ext': 'mp4',
  12. 'title': 'Cserkészek népszerűsítették a környezettudatos életmódot a Savaria téren',
  13. 'description': 'A zöld nap játékos ismeretterjesztő programjait a Magyar Cserkész Szövetség szervezte, akik az ország nyolc városában adják át tudásukat az érdeklődőknek. A PET...',
  14. },
  15. }
  16. def _real_extract(self, url):
  17. video_id = self._match_id(url)
  18. webpage = self._download_webpage(url, video_id)
  19. video_file = self._search_regex(
  20. r'file: "...:(.*?)",', webpage, 'video file')
  21. title = self._html_search_regex(
  22. r'<meta name="title" content="([^"]*?) - [^-]*? - [^-]*?"',
  23. webpage, 'video title')
  24. description = self._html_search_regex(
  25. r'<meta name="description" content="([^"]*)"/>',
  26. webpage, 'video description', fatal=False)
  27. thumbnail = self._og_search_thumbnail(webpage)
  28. video_url = 'http://media.sztv.hu/vod/' + video_file
  29. return {
  30. 'id': video_id,
  31. 'url': video_url,
  32. 'title': title,
  33. 'description': description,
  34. 'thumbnail': thumbnail,
  35. }