1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-06-23 03:46:19 +00:00

Merge e59d9e011a82d6f93c5362a5bf0bf17077e21565 into c052a16f72af7dd7671d4dd62826de71cd99dfb6

This commit is contained in:
zpzploop 2025-04-14 09:08:28 +00:00 committed by GitHub
commit 642fe956cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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