1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00
This commit is contained in:
zpzploop 2023-11-07 10:01:53 +08:00 committed by GitHub
commit 5acaa684a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,9 +91,12 @@ class IwaraIE(InfoExtractor):
self._sort_formats(formats)
uploader = self._html_search_regex(r'<a[^>]+class="username"[^>]*>([^<]+)<', webpage, 'uploader')
return {
'id': video_id,
'title': title,
'uploader': uploader,
'age_limit': age_limit,
'formats': formats,
}