mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[orf:oe1] Add konsole URL schema (Fixes #4675)
This commit is contained in:
parent
385f8ae468
commit
27ca82ebc6
@ -128,13 +128,16 @@ def quality_to_int(s):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# Audios on ORF radio are only available for 7 days, so we can't add tests.
|
|
||||||
|
|
||||||
|
|
||||||
class ORFOE1IE(InfoExtractor):
|
class ORFOE1IE(InfoExtractor):
|
||||||
IE_NAME = 'orf:oe1'
|
IE_NAME = 'orf:oe1'
|
||||||
IE_DESC = 'Radio Österreich 1'
|
IE_DESC = 'Radio Österreich 1'
|
||||||
_VALID_URL = r'http://oe1\.orf\.at/programm/(?P<id>[0-9]+)'
|
_VALID_URL = r'http://oe1\.orf\.at/(?:programm/|konsole.*?#\?track_id=)(?P<id>[0-9]+)'
|
||||||
|
|
||||||
|
# Audios on ORF radio are only available for 7 days, so we can't add tests.
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://oe1.orf.at/konsole?show=on_demand#?track_id=394211',
|
||||||
|
'only_matching': True,
|
||||||
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
show_id = self._match_id(url)
|
show_id = self._match_id(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user