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.

76 lines
2.5 KiB

  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. compat_urllib_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. '(?: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': 're:^https?://.*\.jpg$',
  26. }
  27. }
  28. def _real_extract(self, url):
  29. mobj = re.match(self._VALID_URL, url)
  30. video_id = mobj.group('id')
  31. fields = {
  32. 'id': video_id,
  33. 'op': 'download1',
  34. 'method_free': 'Continue to Video',
  35. }
  36. req = compat_urllib_request.Request(url, urlencode_postdata(fields))
  37. req.add_header('Content-type', 'application/x-www-form-urlencoded')
  38. webpage = self._download_webpage(req, video_id,
  39. 'Downloading download page')
  40. if re.search(self._FILE_DELETED_REGEX, webpage) is not None:
  41. raise ExtractorError('Video %s does not exist' % video_id,
  42. expected=True)
  43. xml_id = self._search_regex(r'php\|([^\|]+)\|', webpage, 'XML ID')
  44. playlist_url = self._PLAYLIST_URL.format(xml_id=xml_id)
  45. playlist = self._download_xml(playlist_url, video_id)
  46. track = playlist.find(_x('.//xspf:track'))
  47. if track is None:
  48. raise ExtractorError(
  49. 'XML playlist is missing the \'track\' element',
  50. expected=True)
  51. title = xpath_text(track, _x('./xspf:title'), 'title')
  52. url = xpath_text(track, _x('./xspf:file'), 'URL', fatal=True)
  53. thumbnail = xpath_text(track, _x('./xspf:image'), 'thumbnail')
  54. if title is not None:
  55. title = title.strip()
  56. formats = [{
  57. 'format_id': 'sd',
  58. 'url': url,
  59. }]
  60. return {
  61. 'id': video_id,
  62. 'title': title,
  63. 'thumbnail': thumbnail,
  64. 'formats': formats,
  65. }