1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

[extractor/heise] Fix extractor (#5029)

Fixes https://github.com/yt-dlp/yt-dlp/issues/1520
Authored by: coletdjnz
This commit is contained in:
coletdjnz 2022-09-26 00:58:06 +00:00 committed by GitHub
parent 0500ee3d81
commit 0ca0f88121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 54 additions and 15 deletions

View File

@ -1,10 +1,12 @@
import urllib.parse
from .common import InfoExtractor from .common import InfoExtractor
from .kaltura import KalturaIE from .kaltura import KalturaIE
from .youtube import YoutubeIE from .youtube import YoutubeIE
from ..utils import ( from ..utils import (
NO_DEFAULT,
determine_ext, determine_ext,
int_or_none, int_or_none,
NO_DEFAULT,
parse_iso8601, parse_iso8601,
smuggle_url, smuggle_url,
xpath_text, xpath_text,
@ -23,6 +25,9 @@ class HeiseIE(InfoExtractor):
'timestamp': 1512734959, 'timestamp': 1512734959,
'upload_date': '20171208', 'upload_date': '20171208',
'description': 'md5:c934cbfb326c669c2bcabcbe3d3fcd20', 'description': 'md5:c934cbfb326c669c2bcabcbe3d3fcd20',
'thumbnail': 're:^https?://.*/thumbnail/.*',
'duration': 2845,
'view_count': int,
}, },
'params': { 'params': {
'skip_download': True, 'skip_download': True,
@ -34,11 +39,27 @@ class HeiseIE(InfoExtractor):
'info_dict': { 'info_dict': {
'id': '6kmWbXleKW4', 'id': '6kmWbXleKW4',
'ext': 'mp4', 'ext': 'mp4',
'title': 'NEU IM SEPTEMBER | Netflix', 'title': 'Neu im September 2017 | Netflix',
'description': 'md5:2131f3c7525e540d5fd841de938bd452', 'description': 'md5:d6852d1f96bb80760608eed3b907437c',
'upload_date': '20170830', 'upload_date': '20170830',
'uploader': 'Netflix Deutschland, Österreich und Schweiz', 'uploader': 'Netflix Deutschland, Österreich und Schweiz',
'uploader_id': 'netflixdach', 'uploader_id': 'netflixdach',
'categories': ['Entertainment'],
'tags': 'count:27',
'age_limit': 0,
'availability': 'public',
'comment_count': int,
'channel_id': 'UCZqgRlLcvO3Fnx_npQJygcQ',
'thumbnail': 'https://i.ytimg.com/vi_webp/6kmWbXleKW4/maxresdefault.webp',
'uploader_url': 'http://www.youtube.com/user/netflixdach',
'playable_in_embed': True,
'live_status': 'not_live',
'channel_url': 'https://www.youtube.com/channel/UCZqgRlLcvO3Fnx_npQJygcQ',
'view_count': int,
'channel': 'Netflix Deutschland, Österreich und Schweiz',
'channel_follower_count': int,
'like_count': int,
'duration': 67,
}, },
'params': { 'params': {
'skip_download': True, 'skip_download': True,
@ -52,11 +73,15 @@ class HeiseIE(InfoExtractor):
'description': 'md5:47e8ffb6c46d85c92c310a512d6db271', 'description': 'md5:47e8ffb6c46d85c92c310a512d6db271',
'timestamp': 1512470717, 'timestamp': 1512470717,
'upload_date': '20171205', 'upload_date': '20171205',
'duration': 786,
'view_count': int,
'thumbnail': 're:^https?://.*/thumbnail/.*',
}, },
'params': { 'params': {
'skip_download': True, 'skip_download': True,
}, },
}, { }, {
# FIXME: Video m3u8 fails to download; issue with Kaltura extractor
'url': 'https://www.heise.de/ct/artikel/c-t-uplink-20-8-Staubsaugerroboter-Xiaomi-Vacuum-2-AR-Brille-Meta-2-und-Android-rooten-3959893.html', 'url': 'https://www.heise.de/ct/artikel/c-t-uplink-20-8-Staubsaugerroboter-Xiaomi-Vacuum-2-AR-Brille-Meta-2-und-Android-rooten-3959893.html',
'info_dict': { 'info_dict': {
'id': '1_59mk80sf', 'id': '1_59mk80sf',
@ -69,6 +94,18 @@ class HeiseIE(InfoExtractor):
'params': { 'params': {
'skip_download': True, 'skip_download': True,
}, },
}, {
# videout
'url': 'https://www.heise.de/ct/artikel/c-t-uplink-3-8-Anonyme-SIM-Karten-G-Sync-Monitore-Citizenfour-2440327.html',
'info_dict': {
'id': '2440327',
'ext': 'mp4',
'title': 'c\'t uplink 3.8: Anonyme SIM-Karten, G-Sync-Monitore, Citizenfour',
'thumbnail': 'http://www.heise.de/imagine/yxM2qmol0xV3iFB7qFb70dGvXjc/gallery/',
'description': 'md5:fa164d8c8707dff124a9626d39205f5d',
'timestamp': 1414825200,
'upload_date': '20141101',
}
}, { }, {
'url': 'http://www.heise.de/ct/artikel/c-t-uplink-3-3-Owncloud-Tastaturen-Peilsender-Smartphone-2403911.html', 'url': 'http://www.heise.de/ct/artikel/c-t-uplink-3-3-Owncloud-Tastaturen-Peilsender-Smartphone-2403911.html',
'only_matching': True, 'only_matching': True,
@ -127,20 +164,22 @@ def _make_kaltura_result(kaltura_url):
yt_urls, video_id, title, ie=YoutubeIE.ie_key()) yt_urls, video_id, title, ie=YoutubeIE.ie_key())
title = extract_title() title = extract_title()
api_params = urllib.parse.parse_qs(
self._search_regex(r'/videout/feed\.json\?([^\']+)', webpage, 'feed params', default=None) or '')
if not api_params or 'container' not in api_params or 'sequenz' not in api_params:
container_id = self._search_regex(
r'<div class="videoplayerjw"[^>]+data-container="([0-9]+)"',
webpage, 'container ID')
container_id = self._search_regex( sequenz_id = self._search_regex(
r'<div class="videoplayerjw"[^>]+data-container="([0-9]+)"', r'<div class="videoplayerjw"[^>]+data-sequenz="([0-9]+)"',
webpage, 'container ID') webpage, 'sequenz ID')
api_params = {
sequenz_id = self._search_regex(
r'<div class="videoplayerjw"[^>]+data-sequenz="([0-9]+)"',
webpage, 'sequenz ID')
doc = self._download_xml(
'http://www.heise.de/videout/feed', video_id, query={
'container': container_id, 'container': container_id,
'sequenz': sequenz_id, 'sequenz': sequenz_id,
}) }
doc = self._download_xml(
'http://www.heise.de/videout/feed', video_id, query=api_params)
formats = [] formats = []
for source_node in doc.findall('.//{http://rss.jwpcdn.com/}source'): for source_node in doc.findall('.//{http://rss.jwpcdn.com/}source'):

View File

@ -1009,7 +1009,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
_EMBED_REGEX = [ _EMBED_REGEX = [
r'''(?x) r'''(?x)
(?: (?:
<iframe[^>]+?src=| <(?:[0-9A-Za-z-]+?)?iframe[^>]+?src=|
data-video-url=| data-video-url=|
<embed[^>]+?src=| <embed[^>]+?src=|
embedSWF\(?:\s*| embedSWF\(?:\s*|