]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/fc2.py
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
10 compat_urllib_request
,
20 class FC2IE(InfoExtractor
):
21 _VALID_URL
= r
'^(?:https?://video\.fc2\.com/(?:[^/]+/)*content/|fc2:)(?P<id>[^/]+)'
23 _NETRC_MACHINE
= 'fc2'
25 'url': 'http://video.fc2.com/en/content/20121103kUan1KHs',
26 'md5': 'a6ebe8ebe0396518689d963774a54eb7',
28 'id': '20121103kUan1KHs',
30 'title': 'Boxing again with Puff',
33 'url': 'http://video.fc2.com/en/content/20150125cEva0hDn/',
35 'id': '20150125cEva0hDn',
39 'username': 'ytdl@yt-dl.org',
42 'skip': 'requires actual password',
44 'url': 'http://video.fc2.com/en/a/content/20130926eZpARwsF',
45 'only_matching': True,
49 username
, password
= self
._get
_login
_info
()
50 if username
is None or password
is None:
61 login_data
= urlencode_postdata(login_form_strs
)
62 request
= sanitized_Request(
63 'https://secure.id.fc2.com/index.php?mode=login&switch_language=en', login_data
)
65 login_results
= self
._download
_webpage
(request
, None, note
='Logging in', errnote
='Unable to log in')
66 if 'mode=redirect&login=done' not in login_results
:
67 self
.report_warning('unable to log in: bad username or password')
71 login_redir
= sanitized_Request('http://id.fc2.com/?mode=redirect&login=done')
72 self
._download
_webpage
(
73 login_redir
, None, note
='Login redirect', errnote
='Login redirect failed')
77 def _real_extract(self
, url
):
78 video_id
= self
._match
_id
(url
)
81 if not url
.startswith('fc2:'):
82 webpage
= self
._download
_webpage
(url
, video_id
)
83 self
._downloader
.cookiejar
.clear_session_cookies() # must clear
86 title
= 'FC2 video %s' % video_id
88 if webpage
is not None:
89 title
= self
._og
_search
_title
(webpage
)
90 thumbnail
= self
._og
_search
_thumbnail
(webpage
)
91 refer
= url
.replace('/content/', '/a/content/') if '/a/content/' not in url
else url
93 mimi
= hashlib
.md5((video_id
+ '_gGddgPfeaf_gzyr').encode('utf-8')).hexdigest()
96 '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&'.
97 format(video_id
, mimi
, compat_urllib_request
.quote(refer
, safe
=b
'').replace('.', '%2E')))
99 info_webpage
= self
._download
_webpage
(
100 info_url
, video_id
, note
='Downloading info page')
101 info
= compat_urlparse
.parse_qs(info_webpage
)
103 if 'err_code' in info
:
104 # most of the time we can still download wideo even if err_code is 403 or 602
106 'Error code was: %s... but still trying' % info
['err_code'][0])
108 if 'filepath' not in info
:
109 raise ExtractorError('Cannot download file. Are you logged in?')
111 video_url
= info
['filepath'][0] + '?mid=' + info
['mid'][0]
112 title_info
= info
.get('title')
114 title
= title_info
[0]
121 'thumbnail': thumbnail
,
125 class FC2EmbedIE(InfoExtractor
):
126 _VALID_URL
= r
'https?://video\.fc2\.com/flv2\.swf\?(?P<query>.+)'
127 IE_NAME
= 'fc2:embed'
130 '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【吹替】',
131 'md5': 'b8aae5334cb691bdb1193a88a6ab5d5a',
133 'id': '201403223kCqB3Ez',
135 'title': 'プリズン・ブレイク S1-01 マイケル 【吹替】',
136 'thumbnail': r
're:^https?://.*\.jpg$',
140 def _real_extract(self
, url
):
141 mobj
= re
.match(self
._VALID
_URL
, url
)
142 query
= compat_parse_qs(mobj
.group('query'))
144 video_id
= query
['i'][-1]
145 title
= query
.get('tl', ['FC2 video %s' % video_id
])[0]
147 sj
= query
.get('sj', [None])[0]
150 # See thumbnailImagePath() in ServerConst.as of flv2.swf
151 thumbnail
= 'http://video%s-thumbnail.fc2.com/up/pic/%s.jpg' % (
152 sj
, '/'.join((video_id
[:6], video_id
[6:8], video_id
[-2], video_id
[-1], video_id
)))
155 '_type': 'url_transparent',
156 'ie_key': FC2IE
.ie_key(),
157 'url': 'fc2:%s' % video_id
,
159 'thumbnail': thumbnail
,