Merge e59d9e011a82d6f93c5362a5bf0bf17077e21565 into da7223d4aa42ff9fc680b0951d043dd03cec2d30

This commit is contained in:
zpzploop 2025-03-22 07:16:25 +08:00 committed by GitHub
commit 23ff31e043
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,
} }