logo

youtube-dl

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

fc2.py (5591B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import hashlib
  4. import re
  5. from .common import InfoExtractor
  6. from ..compat import (
  7. compat_parse_qs,
  8. compat_urllib_request,
  9. compat_urlparse,
  10. )
  11. from ..utils import (
  12. ExtractorError,
  13. sanitized_Request,
  14. urlencode_postdata,
  15. )
  16. class FC2IE(InfoExtractor):
  17. _VALID_URL = r'^(?:https?://video\.fc2\.com/(?:[^/]+/)*content/|fc2:)(?P<id>[^/]+)'
  18. IE_NAME = 'fc2'
  19. _NETRC_MACHINE = 'fc2'
  20. _TESTS = [{
  21. 'url': 'http://video.fc2.com/en/content/20121103kUan1KHs',
  22. 'md5': 'a6ebe8ebe0396518689d963774a54eb7',
  23. 'info_dict': {
  24. 'id': '20121103kUan1KHs',
  25. 'ext': 'flv',
  26. 'title': 'Boxing again with Puff',
  27. },
  28. }, {
  29. 'url': 'http://video.fc2.com/en/content/20150125cEva0hDn/',
  30. 'info_dict': {
  31. 'id': '20150125cEva0hDn',
  32. 'ext': 'mp4',
  33. },
  34. 'params': {
  35. 'username': 'ytdl@yt-dl.org',
  36. 'password': '(snip)',
  37. },
  38. 'skip': 'requires actual password',
  39. }, {
  40. 'url': 'http://video.fc2.com/en/a/content/20130926eZpARwsF',
  41. 'only_matching': True,
  42. }]
  43. def _login(self):
  44. username, password = self._get_login_info()
  45. if username is None or password is None:
  46. return False
  47. # Log in
  48. login_form_strs = {
  49. 'email': username,
  50. 'password': password,
  51. 'done': 'video',
  52. 'Submit': ' Login ',
  53. }
  54. login_data = urlencode_postdata(login_form_strs)
  55. request = sanitized_Request(
  56. 'https://secure.id.fc2.com/index.php?mode=login&switch_language=en', login_data)
  57. login_results = self._download_webpage(request, None, note='Logging in', errnote='Unable to log in')
  58. if 'mode=redirect&login=done' not in login_results:
  59. self.report_warning('unable to log in: bad username or password')
  60. return False
  61. # this is also needed
  62. login_redir = sanitized_Request('http://id.fc2.com/?mode=redirect&login=done')
  63. self._download_webpage(
  64. login_redir, None, note='Login redirect', errnote='Login redirect failed')
  65. return True
  66. def _real_extract(self, url):
  67. video_id = self._match_id(url)
  68. self._login()
  69. webpage = None
  70. if not url.startswith('fc2:'):
  71. webpage = self._download_webpage(url, video_id)
  72. self._downloader.cookiejar.clear_session_cookies() # must clear
  73. self._login()
  74. title = 'FC2 video %s' % video_id
  75. thumbnail = None
  76. if webpage is not None:
  77. title = self._og_search_title(webpage)
  78. thumbnail = self._og_search_thumbnail(webpage)
  79. refer = url.replace('/content/', '/a/content/') if '/a/content/' not in url else url
  80. mimi = hashlib.md5((video_id + '_gGddgPfeaf_gzyr').encode('utf-8')).hexdigest()
  81. info_url = (
  82. 'http://video.fc2.com/ginfo.php?mimi={1:s}&href={2:s}&v={0:s}&fversion=WIN%2011%2C6%2C602%2C180&from=2&otag=0&upid={0:s}&tk=null&'.
  83. format(video_id, mimi, compat_urllib_request.quote(refer, safe=b'').replace('.', '%2E')))
  84. info_webpage = self._download_webpage(
  85. info_url, video_id, note='Downloading info page')
  86. info = compat_urlparse.parse_qs(info_webpage)
  87. if 'err_code' in info:
  88. # most of the time we can still download wideo even if err_code is 403 or 602
  89. self.report_warning(
  90. 'Error code was: %s... but still trying' % info['err_code'][0])
  91. if 'filepath' not in info:
  92. raise ExtractorError('Cannot download file. Are you logged in?')
  93. video_url = info['filepath'][0] + '?mid=' + info['mid'][0]
  94. title_info = info.get('title')
  95. if title_info:
  96. title = title_info[0]
  97. return {
  98. 'id': video_id,
  99. 'title': title,
  100. 'url': video_url,
  101. 'ext': 'flv',
  102. 'thumbnail': thumbnail,
  103. }
  104. class FC2EmbedIE(InfoExtractor):
  105. _VALID_URL = r'https?://video\.fc2\.com/flv2\.swf\?(?P<query>.+)'
  106. IE_NAME = 'fc2:embed'
  107. _TEST = {
  108. 'url': 'http://video.fc2.com/flv2.swf?t=201404182936758512407645&i=20130316kwishtfitaknmcgd76kjd864hso93htfjcnaogz629mcgfs6rbfk0hsycma7shkf85937cbchfygd74&i=201403223kCqB3Ez&d=2625&sj=11&lang=ja&rel=1&from=11&cmt=1&tk=TlRBM09EQTNNekU9&tl=プリズン・ブレイク%20S1-01%20マイケル%20【吹替】',
  109. 'md5': 'b8aae5334cb691bdb1193a88a6ab5d5a',
  110. 'info_dict': {
  111. 'id': '201403223kCqB3Ez',
  112. 'ext': 'flv',
  113. 'title': 'プリズン・ブレイク S1-01 マイケル 【吹替】',
  114. 'thumbnail': r're:^https?://.*\.jpg$',
  115. },
  116. }
  117. def _real_extract(self, url):
  118. mobj = re.match(self._VALID_URL, url)
  119. query = compat_parse_qs(mobj.group('query'))
  120. video_id = query['i'][-1]
  121. title = query.get('tl', ['FC2 video %s' % video_id])[0]
  122. sj = query.get('sj', [None])[0]
  123. thumbnail = None
  124. if sj:
  125. # See thumbnailImagePath() in ServerConst.as of flv2.swf
  126. thumbnail = 'http://video%s-thumbnail.fc2.com/up/pic/%s.jpg' % (
  127. sj, '/'.join((video_id[:6], video_id[6:8], video_id[-2], video_id[-1], video_id)))
  128. return {
  129. '_type': 'url_transparent',
  130. 'ie_key': FC2IE.ie_key(),
  131. 'url': 'fc2:%s' % video_id,
  132. 'title': title,
  133. 'thumbnail': thumbnail,
  134. }