wat.py 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # coding: utf-8
  2. import json
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. compat_urllib_parse,
  7. unified_strdate,
  8. )
  9. class WatIE(InfoExtractor):
  10. _VALID_URL=r'http://www.wat.tv/.*-(?P<shortID>.*?)_.*?.html'
  11. IE_NAME = 'wat.tv'
  12. _TEST = {
  13. u'url': u'http://www.wat.tv/video/world-war-philadelphia-vost-6bv55_2fjr7_.html',
  14. u'file': u'10631273.mp4',
  15. u'md5': u'd8b2231e1e333acd12aad94b80937e19',
  16. u'info_dict': {
  17. u'title': u'World War Z - Philadelphia VOST',
  18. u'description': u'La menace est partout. Que se passe-t-il à Philadelphia ?\r\nWORLD WAR Z, avec Brad Pitt, au cinéma le 3 juillet.\r\nhttp://www.worldwarz.fr',
  19. },
  20. u'skip': u'Sometimes wat serves the whole file with the --test option',
  21. }
  22. def download_video_info(self, real_id):
  23. # 'contentv4' is used in the website, but it also returns the related
  24. # videos, we don't need them
  25. info = self._download_webpage('http://www.wat.tv/interface/contentv3/' + real_id, real_id, 'Downloading video info')
  26. info = json.loads(info)
  27. return info['media']
  28. def _real_extract(self, url):
  29. def real_id_for_chapter(chapter):
  30. return chapter['tc_start'].split('-')[0]
  31. mobj = re.match(self._VALID_URL, url)
  32. short_id = mobj.group('shortID')
  33. webpage = self._download_webpage(url, short_id)
  34. real_id = self._search_regex(r'xtpage = ".*-(.*?)";', webpage, 'real id')
  35. video_info = self.download_video_info(real_id)
  36. chapters = video_info['chapters']
  37. first_chapter = chapters[0]
  38. if real_id_for_chapter(first_chapter) != real_id:
  39. self.to_screen('Multipart video detected')
  40. chapter_urls = []
  41. for chapter in chapters:
  42. chapter_id = real_id_for_chapter(chapter)
  43. # Yes, when we this chapter is processed by WatIE,
  44. # it will download the info again
  45. chapter_info = self.download_video_info(chapter_id)
  46. chapter_urls.append(chapter_info['url'])
  47. entries = [self.url_result(chapter_url) for chapter_url in chapter_urls]
  48. return self.playlist_result(entries, real_id, video_info['title'])
  49. # Otherwise we can continue and extract just one part, we have to use
  50. # the short id for getting the video url
  51. info = {'id': real_id,
  52. 'url': 'http://wat.tv/get/android5/%s.mp4' % real_id,
  53. 'ext': 'mp4',
  54. 'title': first_chapter['title'],
  55. 'thumbnail': first_chapter['preview'],
  56. 'description': first_chapter['description'],
  57. 'view_count': video_info['views'],
  58. }
  59. if 'date_diffusion' in first_chapter:
  60. info['upload_date'] = unified_strdate(first_chapter['date_diffusion'])
  61. return info