mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 02:14:32 +01:00
[tvp] fix and test for tvpparlament.pl
This commit is contained in:
parent
bda25c5196
commit
dff921f6e1
@ -17,7 +17,7 @@ from ..utils import (
|
||||
class TVPIE(InfoExtractor):
|
||||
IE_NAME = 'tvp'
|
||||
IE_DESC = 'Telewizja Polska'
|
||||
_VALID_URL = r'https?://[^/]+\.tvp\.(?:pl|info)/(?:video/(?:[^,\s]*,)*|(?:(?!\d+/)[^/]+/)*)(?P<id>\d+)'
|
||||
_VALID_URL = r'https?://[^/]+\.(?:tvp(?:parlament)?\.(?:pl|info))/(?:video/(?:[^,\s]*,)*|(?:(?!\d+/)[^/]+/)*)(?P<id>\d+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'https://vod.tvp.pl/video/czas-honoru,i-seria-odc-13,194536',
|
||||
@ -56,6 +56,14 @@ class TVPIE(InfoExtractor):
|
||||
'title': 'Wiadomości, Medialne hieny atakują prezydenta Polski',
|
||||
'description': 'md5:d5dd389dfd65e2ed02b3a176b53fabd3',
|
||||
},
|
||||
}, {
|
||||
'url': 'https://www.tvpparlament.pl/retransmisje-vod/inne/podpisanie-przez-prezydenta-andrzeja-dude-projektu-zmiany-konstytucji-rp/48837669',
|
||||
'info_dict': {
|
||||
'id': '48837669',
|
||||
'ext': 'mp4',
|
||||
'title': 'Podpisanie przez prezydenta Andrzeja Dudę projektu zmiany Konstytucji RP',
|
||||
'description': 'md5:bfe1ec8eb4b9f0b0926afa561735d8f9',
|
||||
}
|
||||
}, {
|
||||
'url': 'http://vod.tvp.pl/seriale/obyczajowe/na-sygnale/sezon-2-27-/odc-39/17834272',
|
||||
'only_matching': True,
|
||||
@ -206,6 +214,7 @@ class TVPEmbedIE(InfoExtractor):
|
||||
'formats': formats,
|
||||
}
|
||||
|
||||
|
||||
class TVPWebsiteIE(InfoExtractor):
|
||||
IE_NAME = 'tvp:series'
|
||||
_VALID_URL = r'https?://vod\.tvp\.pl/website/(?P<display_id>[^,]+),(?P<id>\d+)'
|
||||
|
Loading…
Reference in New Issue
Block a user