This commit is contained in:
xxxx1110 2020-10-04 08:58:13 +02:00 committed by GitHub
commit eee1d7f37c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -444,6 +444,8 @@ class NiconicoPlaylistIE(InfoExtractor):
'info_dict': {
'id': '27411728',
'title': 'AKB48のオールナイトニッポン',
'uploader_id': '805442',
'uploader': 'のっく',
},
'playlist_mincount': 225,
}
@ -465,6 +467,8 @@ class NiconicoPlaylistIE(InfoExtractor):
return {
'_type': 'playlist',
'title': self._search_regex(r'\s+name: "(.*?)"', webpage, 'title'),
'uploader_id': self._search_regex(r'\s+user_id: ([0-9]+)', webpage, 'uploader_id'),
'uploader': self._search_regex(r'\s+nickname: "(.*?)"', webpage, 'uploader'),
'id': list_id,
'entries': entries,
}