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.

70 lines
2.2 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_with_ns,
  10. )
  11. _x = lambda p: xpath_with_ns(p, {'xspf': 'http://xspf.org/ns/0/'})
  12. _find = lambda el, p: el.find(_x(p)).text.strip()
  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. title = _find(track, './xspf:title')
  48. url = _find(track, './xspf:file')
  49. thumbnail = _find(track, './xspf:image')
  50. formats = [{
  51. 'format_id': 'sd',
  52. 'url': url,
  53. }]
  54. return {
  55. 'id': video_id,
  56. 'title': title,
  57. 'thumbnail': thumbnail,
  58. 'formats': formats,
  59. }