summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/dbtv.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:37:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:37:42 +0000
commitc7bab7c39fd51c0812f70020172766303191bc01 (patch)
tree56c05fbdd4fc47409d48ba318a4b621a7b0d299a /yt_dlp/extractor/dbtv.py
parentInitial commit. (diff)
downloadyt-dlp-upstream/2023.03.04.tar.xz
yt-dlp-upstream/2023.03.04.zip
Adding upstream version 2023.03.04.upstream/2023.03.04upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--yt_dlp/extractor/dbtv.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/yt_dlp/extractor/dbtv.py b/yt_dlp/extractor/dbtv.py
new file mode 100644
index 0000000..18be46f
--- /dev/null
+++ b/yt_dlp/extractor/dbtv.py
@@ -0,0 +1,47 @@
+from .common import InfoExtractor
+
+
+class DBTVIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?dagbladet\.no/video/(?:(?:embed|(?P<display_id>[^/]+))/)?(?P<id>[0-9A-Za-z_-]{11}|[a-zA-Z0-9]{8})'
+ _EMBED_REGEX = [r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dagbladet\.no/video/embed/(?:[0-9A-Za-z_-]{11}|[a-zA-Z0-9]{8}).*?)\1']
+ _TESTS = [{
+ 'url': 'https://www.dagbladet.no/video/PynxJnNWChE/',
+ 'md5': 'b8f850ba1860adbda668d367f9b77699',
+ 'info_dict': {
+ 'id': 'PynxJnNWChE',
+ 'ext': 'mp4',
+ 'title': 'Skulle teste ut fornøyelsespark, men kollegaen var bare opptatt av bikinikroppen',
+ 'description': 'md5:49cc8370e7d66e8a2ef15c3b4631fd3f',
+ 'thumbnail': r're:https?://.*\.jpg',
+ 'upload_date': '20160916',
+ 'duration': 69,
+ 'uploader_id': 'UCk5pvsyZJoYJBd7_oFPTlRQ',
+ 'uploader': 'Dagbladet',
+ },
+ 'add_ie': ['Youtube']
+ }, {
+ 'url': 'https://www.dagbladet.no/video/embed/xlGmyIeN9Jo/?autoplay=false',
+ 'only_matching': True,
+ }, {
+ 'url': 'https://www.dagbladet.no/video/truer-iran-bor-passe-dere/PalfB2Cw',
+ 'only_matching': True,
+ }]
+
+ def _real_extract(self, url):
+ display_id, video_id = self._match_valid_url(url).groups()
+ info = {
+ '_type': 'url_transparent',
+ 'id': video_id,
+ 'display_id': display_id,
+ }
+ if len(video_id) == 11:
+ info.update({
+ 'url': video_id,
+ 'ie_key': 'Youtube',
+ })
+ else:
+ info.update({
+ 'url': 'jwplatform:' + video_id,
+ 'ie_key': 'JWPlatform',
+ })
+ return info