1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-16 09:28:28 +00:00

Update yt_dlp/extractor/filmarchiv.py

Co-authored-by: doe1080 <98906116+doe1080@users.noreply.github.com>
This commit is contained in:
delta 2025-06-20 09:05:21 +02:00 committed by GitHub
parent e1f5295adc
commit a2df88f1e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,8 +22,7 @@ def _real_extract(self, url):
media_id = self._match_id(url) media_id = self._match_id(url)
webpage = self._download_webpage(url, media_id) webpage = self._download_webpage(url, media_id)
title = self._html_search_regex( title = traverse_obj(webpage, ({find_element(tag='title-div')}, {clean_html}))
r'<title-div[^>]*>\s*(.+?)\s*</title-div>', webpage, 'title')
description = traverse_obj(webpage, ( description = traverse_obj(webpage, (
{find_elements( {find_elements(