]> jfr.im git - yt-dlp.git/commitdiff
[extractor/syvdk] Add extractor (#4250)
authorMisael Aguayo <redacted>
Sun, 10 Jul 2022 19:22:30 +0000 (14:22 -0500)
committerGitHub <redacted>
Sun, 10 Jul 2022 19:22:30 +0000 (00:52 +0530)
Closes https://github.com/yt-dlp/yt-dlp/issues/4077
Authored by: misaelaguayo

yt_dlp/extractor/_extractors.py
yt_dlp/extractor/syvdk.py [new file with mode: 0644]

index 2a83c28540239a863dfd0c390c3a1871beb802a8..70c5565d97e801311b85226d90f40475e8fd412f 100644 (file)
     SVTSeriesIE,
 )
 from .swrmediathek import SWRMediathekIE
+from .syvdk import SYVDKIE
 from .syfy import SyfyIE
 from .sztvhu import SztvHuIE
 from .tagesschau import TagesschauIE
diff --git a/yt_dlp/extractor/syvdk.py b/yt_dlp/extractor/syvdk.py
new file mode 100644 (file)
index 0000000..287fb26
--- /dev/null
@@ -0,0 +1,33 @@
+from .common import InfoExtractor
+from ..utils import traverse_obj
+
+
+class SYVDKIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.)?24syv\.dk/episode/(?P<id>[\w-]+)'
+
+    _TESTS = [{
+        'url': 'https://24syv.dk/episode/isabella-arendt-stiller-op-for-de-konservative-2',
+        'md5': '429ce5a423dd4b1e1d0bf3a569558089',
+        'info_dict': {
+            'id': '12215',
+            'display_id': 'isabella-arendt-stiller-op-for-de-konservative-2',
+            'ext': 'mp3',
+            'title': 'Isabella Arendt stiller op for De Konservative',
+            'description': 'md5:f5fa6a431813bf37284f3412ad7c6c06'
+        }
+    }]
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+        webpage = self._download_webpage(url, video_id)
+        info_data = self._search_nextjs_data(webpage, video_id)['props']['pageProps']['episodeDetails'][0]
+
+        return {
+            'id': str(info_data['id']),
+            'vcodec': 'none',
+            'ext': 'mp3',
+            'url': info_data['details']['enclosure'],
+            'display_id': video_id,
+            'title': traverse_obj(info_data, ('title', 'rendered')),
+            'description': traverse_obj(info_data, ('details', 'post_title')),
+        }