mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-22 20:20:09 +09:00
parent
48082c9091
commit
515c8b85b1
@ -112,7 +112,7 @@ class ORFRadioIE(ORFRadioBase):
|
|||||||
|
|
||||||
_VALID_URL = (
|
_VALID_URL = (
|
||||||
r'https?://sound\.orf\.at/radio/(?P<station>{0})/sendung/(?P<id>\d+)(?:/(?P<show>\w+))?'.format(_STATION_RE),
|
r'https?://sound\.orf\.at/radio/(?P<station>{0})/sendung/(?P<id>\d+)(?:/(?P<show>\w+))?'.format(_STATION_RE),
|
||||||
r'https?://(?P<station>{0})\.orf\.at/player/(?P<date>\d{{8}})/(?P<id>\d+)'.format(_STATION_RE),
|
r'https?://(?P<station>{0})\.orf\.at/(?:player|programm)/(?P<date>\d{{8}})/(?P<id>\d+)'.format(_STATION_RE),
|
||||||
)
|
)
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
@ -150,6 +150,10 @@ class ORFRadioIE(ORFRadioBase):
|
|||||||
'duration': 1500,
|
'duration': 1500,
|
||||||
},
|
},
|
||||||
'skip': 'Shows from ORF Sound are only available for 30 days.'
|
'skip': 'Shows from ORF Sound are only available for 30 days.'
|
||||||
|
}, {
|
||||||
|
# yt-dlp/yt-dlp#11014
|
||||||
|
'url': 'https://oe1.orf.at/programm/20240916/769302/Playgrounds',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user