]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/niconico.py
2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
24 class NiconicoIE(InfoExtractor
):
29 'url': 'http://www.nicovideo.jp/watch/sm22312215',
30 'md5': 'd1a75c0823e2f629128c43e1212760f9',
34 'title': 'Big Buck Bunny',
35 'uploader': 'takuya0301',
36 'uploader_id': '2698420',
37 'upload_date': '20131123',
38 'timestamp': 1385182762,
39 'description': '(c) copyright 2008, Blender Foundation / www.bigbuckbunny.org',
42 'skip': 'Requires an account',
44 # File downloaded with and without credentials are different, so omit
46 'url': 'http://www.nicovideo.jp/watch/nm14296458',
50 'title': '【鏡音リン】Dance on media【オリジナル】take2!',
51 'description': 'md5:689f066d74610b3b22e0f1739add0f58',
53 'uploader_id': '18822557',
54 'upload_date': '20110429',
55 'timestamp': 1304065916,
58 'skip': 'Requires an account',
60 # 'video exists but is marked as "deleted"
62 'url': 'http://www.nicovideo.jp/watch/sm10000',
65 'ext': 'unknown_video',
66 'description': 'deleted',
67 'title': 'ドラえもんエターナル第3話「決戦第3新東京市」<前編>',
68 'upload_date': '20071224',
69 'timestamp': int, # timestamp field has different value if logged in
72 'skip': 'Requires an account',
74 'url': 'http://www.nicovideo.jp/watch/so22543406',
78 'title': '【第1回】RADIOアニメロミックス ラブライブ!~のぞえりRadio Garden~',
79 'description': 'md5:b27d224bb0ff53d3c8269e9f8b561cf1',
80 'timestamp': 1388851200,
81 'upload_date': '20140104',
82 'uploader': 'アニメロチャンネル',
85 'skip': 'The viewing period of the video you were searching for has expired.',
88 _VALID_URL
= r
'https?://(?:www\.|secure\.)?nicovideo\.jp/watch/(?P<id>(?:[a-z]{2})?[0-9]+)'
89 _NETRC_MACHINE
= 'niconico'
91 def _real_initialize(self
):
95 (username
, password
) = self
._get
_login
_info
()
96 # No authentication to be performed
103 'password': password
,
105 login_data
= urlencode_postdata(login_form_strs
)
106 request
= sanitized_Request(
107 'https://secure.nicovideo.jp/secure/login', login_data
)
108 login_results
= self
._download
_webpage
(
109 request
, None, note
='Logging in', errnote
='Unable to log in')
110 if re
.search(r
'(?i)<h1 class="mb8p4">Log in error</h1>', login_results
) is not None:
111 self
._downloader
.report_warning('unable to log in: bad username or password')
115 def _real_extract(self
, url
):
116 video_id
= self
._match
_id
(url
)
118 # Get video webpage. We are not actually interested in it for normal
119 # cases, but need the cookies in order to be able to download the
121 webpage
, handle
= self
._download
_webpage
_handle
(
122 'http://www.nicovideo.jp/watch/' + video_id
, video_id
)
123 if video_id
.startswith('so'):
124 video_id
= self
._match
_id
(handle
.geturl())
126 video_info
= self
._download
_xml
(
127 'http://ext.nicovideo.jp/api/getthumbinfo/' + video_id
, video_id
,
128 note
='Downloading video info page')
131 flv_info_webpage
= self
._download
_webpage
(
132 'http://flapi.nicovideo.jp/api/getflv/' + video_id
+ '?as3=1',
133 video_id
, 'Downloading flv info')
135 flv_info
= compat_urlparse
.parse_qs(flv_info_webpage
)
136 if 'url' not in flv_info
:
137 if 'deleted' in flv_info
:
138 raise ExtractorError('The video has been deleted.',
140 elif 'closed' in flv_info
:
141 raise ExtractorError('Niconico videos now require logging in',
144 raise ExtractorError('Unable to find video URL')
146 video_real_url
= flv_info
['url'][0]
148 # Start extracting information
149 title
= xpath_text(video_info
, './/title')
151 title
= self
._og
_search
_title
(webpage
, default
=None)
153 title
= self
._html
_search
_regex
(
154 r
'<span[^>]+class="videoHeaderTitle"[^>]*>([^<]+)</span>',
155 webpage
, 'video title')
157 watch_api_data_string
= self
._html
_search
_regex
(
158 r
'<div[^>]+id="watchAPIDataContainer"[^>]+>([^<]+)</div>',
159 webpage
, 'watch api data', default
=None)
160 watch_api_data
= self
._parse
_json
(watch_api_data_string
, video_id
) if watch_api_data_string
else {}
161 video_detail
= watch_api_data
.get('videoDetail', {})
163 extension
= xpath_text(video_info
, './/movie_type')
165 extension
= determine_ext(video_real_url
)
168 xpath_text(video_info
, './/thumbnail_url') or
169 self
._html
_search
_meta
('image', webpage
, 'thumbnail', default
=None) or
170 video_detail
.get('thumbnail'))
172 description
= xpath_text(video_info
, './/description')
174 timestamp
= parse_iso8601(xpath_text(video_info
, './/first_retrieve'))
176 match
= self
._html
_search
_meta
('datePublished', webpage
, 'date published', default
=None)
178 timestamp
= parse_iso8601(match
.replace('+', ':00+'))
179 if not timestamp
and video_detail
.get('postedAt'):
180 timestamp
= parse_iso8601(
181 video_detail
['postedAt'].replace('/', '-'),
182 delimiter
=' ', timezone
=datetime
.timedelta(hours
=9))
184 view_count
= int_or_none(xpath_text(video_info
, './/view_counter'))
186 match
= self
._html
_search
_regex
(
187 r
'>Views: <strong[^>]*>([^<]+)</strong>',
188 webpage
, 'view count', default
=None)
190 view_count
= int_or_none(match
.replace(',', ''))
191 view_count
= view_count
or video_detail
.get('viewCount')
193 comment_count
= int_or_none(xpath_text(video_info
, './/comment_num'))
194 if not comment_count
:
195 match
= self
._html
_search
_regex
(
196 r
'>Comments: <strong[^>]*>([^<]+)</strong>',
197 webpage
, 'comment count', default
=None)
199 comment_count
= int_or_none(match
.replace(',', ''))
200 comment_count
= comment_count
or video_detail
.get('commentCount')
202 duration
= (parse_duration(
203 xpath_text(video_info
, './/length') or
204 self
._html
_search
_meta
(
205 'video:duration', webpage
, 'video duration', default
=None)) or
206 video_detail
.get('length'))
208 webpage_url
= xpath_text(video_info
, './/watch_url') or url
210 if video_info
.find('.//ch_id') is not None:
211 uploader_id
= video_info
.find('.//ch_id').text
212 uploader
= video_info
.find('.//ch_name').text
213 elif video_info
.find('.//user_id') is not None:
214 uploader_id
= video_info
.find('.//user_id').text
215 uploader
= video_info
.find('.//user_nickname').text
217 uploader_id
= uploader
= None
221 'url': video_real_url
,
224 'format_id': 'economy' if video_real_url
.endswith('low') else 'normal',
225 'thumbnail': thumbnail
,
226 'description': description
,
227 'uploader': uploader
,
228 'timestamp': timestamp
,
229 'uploader_id': uploader_id
,
230 'view_count': view_count
,
231 'comment_count': comment_count
,
232 'duration': duration
,
233 'webpage_url': webpage_url
,
237 class NiconicoPlaylistIE(InfoExtractor
):
238 _VALID_URL
= r
'https?://(?:www\.)?nicovideo\.jp/mylist/(?P<id>\d+)'
241 'url': 'http://www.nicovideo.jp/mylist/27411728',
244 'title': 'AKB48のオールナイトニッポン',
246 'playlist_mincount': 225,
249 def _real_extract(self
, url
):
250 list_id
= self
._match
_id
(url
)
251 webpage
= self
._download
_webpage
(url
, list_id
)
253 entries_json
= self
._search
_regex
(r
'Mylist\.preload\(\d+, (\[.*\])\);',
255 entries
= json
.loads(entries_json
)
258 'ie_key': NiconicoIE
.ie_key(),
259 'url': ('http://www.nicovideo.jp/watch/%s' %
260 entry
['item_data']['video_id']),
261 } for entry
in entries
]
265 'title': self
._search
_regex
(r
'\s+name: "(.*?)"', webpage
, 'title'),