mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-11-13 13:05:13 +00:00
[ie/TubeTuGraz] Support alternate URL format (#14718)
Closes #14686 Authored by: krystophny
This commit is contained in:
committed by
GitHub
parent
3ef867451c
commit
f3597cfafc
@@ -136,8 +136,10 @@ class TubeTuGrazIE(TubeTuGrazBaseIE):
|
|||||||
IE_DESC = 'tube.tugraz.at'
|
IE_DESC = 'tube.tugraz.at'
|
||||||
|
|
||||||
_VALID_URL = r'''(?x)
|
_VALID_URL = r'''(?x)
|
||||||
https?://tube\.tugraz\.at/paella/ui/watch.html\?id=
|
https?://tube\.tugraz\.at/(?:
|
||||||
(?P<id>[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12})
|
paella/ui/watch\.html\?(?:[^#]*&)?id=|
|
||||||
|
portal/watch/
|
||||||
|
)(?P<id>[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12})
|
||||||
'''
|
'''
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
@@ -152,6 +154,7 @@ class TubeTuGrazIE(TubeTuGrazBaseIE):
|
|||||||
'creator': 'Safran C',
|
'creator': 'Safran C',
|
||||||
'duration': 3295818,
|
'duration': 3295818,
|
||||||
'series_id': 'b1192fff-2aa7-4bf0-a5cf-7b15c3bd3b34',
|
'series_id': 'b1192fff-2aa7-4bf0-a5cf-7b15c3bd3b34',
|
||||||
|
'creators': ['Safran C'],
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://tube.tugraz.at/paella/ui/watch.html?id=2df6d787-e56a-428d-8ef4-d57f07eef238',
|
'url': 'https://tube.tugraz.at/paella/ui/watch.html?id=2df6d787-e56a-428d-8ef4-d57f07eef238',
|
||||||
@@ -162,6 +165,10 @@ class TubeTuGrazIE(TubeTuGrazBaseIE):
|
|||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
},
|
},
|
||||||
'expected_warnings': ['Extractor failed to obtain "title"'],
|
'expected_warnings': ['Extractor failed to obtain "title"'],
|
||||||
|
}, {
|
||||||
|
# Portal URL format
|
||||||
|
'url': 'https://tube.tugraz.at/portal/watch/ab28ec60-8cbe-4f1a-9b96-a95add56c612',
|
||||||
|
'only_matching': True,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user