]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/fc2.py
9580f5c0c5d1f4eb9bd54eb76126744322ae85e9
1 #! -*- coding: utf-8 -*-
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
19 class FC2IE(InfoExtractor
):
20 _VALID_URL
= r
'^http://video\.fc2\.com/(?:[^/]+/)*content/(?P<id>[^/]+)'
22 _NETRC_MACHINE
= 'fc2'
24 'url': 'http://video.fc2.com/en/content/20121103kUan1KHs',
25 'md5': 'a6ebe8ebe0396518689d963774a54eb7',
27 'id': '20121103kUan1KHs',
29 'title': 'Boxing again with Puff',
32 'url': 'http://video.fc2.com/en/content/20150125cEva0hDn/',
34 'id': '20150125cEva0hDn',
38 'username': 'ytdl@yt-dl.org',
41 'skip': 'requires actual password',
43 'url': 'http://video.fc2.com/en/a/content/20130926eZpARwsF',
44 'only_matching': True,
48 (username
, password
) = self
._get
_login
_info
()
49 if username
is None or password
is None:
60 login_data
= compat_urllib_parse
.urlencode(encode_dict(login_form_strs
)).encode('utf-8')
61 request
= sanitized_Request(
62 'https://secure.id.fc2.com/index.php?mode=login&switch_language=en', login_data
)
64 login_results
= self
._download
_webpage
(request
, None, note
='Logging in', errnote
='Unable to log in')
65 if 'mode=redirect&login=done' not in login_results
:
66 self
.report_warning('unable to log in: bad username or password')
70 login_redir
= sanitized_Request('http://id.fc2.com/?mode=redirect&login=done')
71 self
._download
_webpage
(
72 login_redir
, None, note
='Login redirect', errnote
='Login redirect failed')
76 def _real_extract(self
, url
):
77 video_id
= self
._match
_id
(url
)
79 webpage
= self
._download
_webpage
(url
, video_id
)
80 self
._downloader
.cookiejar
.clear_session_cookies() # must clear
83 title
= self
._og
_search
_title
(webpage
)
84 thumbnail
= self
._og
_search
_thumbnail
(webpage
)
85 refer
= url
.replace('/content/', '/a/content/') if '/a/content/' not in url
else url
87 mimi
= hashlib
.md5((video_id
+ '_gGddgPfeaf_gzyr').encode('utf-8')).hexdigest()
90 '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&'.
91 format(video_id
, mimi
, compat_urllib_request
.quote(refer
, safe
=b
'').replace('.', '%2E')))
93 info_webpage
= self
._download
_webpage
(
94 info_url
, video_id
, note
='Downloading info page')
95 info
= compat_urlparse
.parse_qs(info_webpage
)
97 if 'err_code' in info
:
98 # most of the time we can still download wideo even if err_code is 403 or 602
100 'Error code was: %s... but still trying' % info
['err_code'][0])
102 if 'filepath' not in info
:
103 raise ExtractorError('Cannot download file. Are you logged in?')
105 video_url
= info
['filepath'][0] + '?mid=' + info
['mid'][0]
106 title_info
= info
.get('title')
108 title
= title_info
[0]
115 'thumbnail': thumbnail
,