logo

youtube-dl

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

nosvideo.py (2480B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. ExtractorError,
  7. sanitized_Request,
  8. urlencode_postdata,
  9. xpath_text,
  10. xpath_with_ns,
  11. )
  12. _x = lambda p: xpath_with_ns(p, {'xspf': 'http://xspf.org/ns/0/'})
  13. class NosVideoIE(InfoExtractor):
  14. _VALID_URL = r'https?://(?:www\.)?nosvideo\.com/' + \
  15. r'(?:embed/|\?v=)(?P<id>[A-Za-z0-9]{12})/?'
  16. _PLAYLIST_URL = 'http://nosvideo.com/xml/{xml_id:s}.xml'
  17. _FILE_DELETED_REGEX = r'<b>File Not Found</b>'
  18. _TEST = {
  19. 'url': 'http://nosvideo.com/?v=mu8fle7g7rpq',
  20. 'md5': '6124ed47130d8be3eacae635b071e6b6',
  21. 'info_dict': {
  22. 'id': 'mu8fle7g7rpq',
  23. 'ext': 'mp4',
  24. 'title': 'big_buck_bunny_480p_surround-fix.avi.mp4',
  25. 'thumbnail': r're:^https?://.*\.jpg$',
  26. }
  27. }
  28. def _real_extract(self, url):
  29. video_id = self._match_id(url)
  30. fields = {
  31. 'id': video_id,
  32. 'op': 'download1',
  33. 'method_free': 'Continue to Video',
  34. }
  35. req = sanitized_Request(url, urlencode_postdata(fields))
  36. req.add_header('Content-type', 'application/x-www-form-urlencoded')
  37. webpage = self._download_webpage(req, video_id,
  38. 'Downloading download page')
  39. if re.search(self._FILE_DELETED_REGEX, webpage) is not None:
  40. raise ExtractorError('Video %s does not exist' % video_id,
  41. expected=True)
  42. xml_id = self._search_regex(r'php\|([^\|]+)\|', webpage, 'XML ID')
  43. playlist_url = self._PLAYLIST_URL.format(xml_id=xml_id)
  44. playlist = self._download_xml(playlist_url, video_id)
  45. track = playlist.find(_x('.//xspf:track'))
  46. if track is None:
  47. raise ExtractorError(
  48. 'XML playlist is missing the \'track\' element',
  49. expected=True)
  50. title = xpath_text(track, _x('./xspf:title'), 'title')
  51. url = xpath_text(track, _x('./xspf:file'), 'URL', fatal=True)
  52. thumbnail = xpath_text(track, _x('./xspf:image'), 'thumbnail')
  53. if title is not None:
  54. title = title.strip()
  55. formats = [{
  56. 'format_id': 'sd',
  57. 'url': url,
  58. }]
  59. return {
  60. 'id': video_id,
  61. 'title': title,
  62. 'thumbnail': thumbnail,
  63. 'formats': formats,
  64. }