diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-10 14:27:27 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-10 14:27:27 +0100 |
commit | 27ca82ebc66c91359173e45b25d992118511e330 (patch) | |
tree | 0188f61f7cf5aec18897d9e6648954e2bf496dea /youtube_dl/extractor/orf.py | |
parent | 385f8ae4684e7c7fd04d66b6066d980c93e2d79f (diff) |
[orf:oe1] Add konsole URL schema (Fixes #4675)
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r-- | youtube_dl/extractor/orf.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index 3d2e5d2c9..4e293392b 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -128,13 +128,16 @@ class ORFTVthekIE(InfoExtractor): } -# Audios on ORF radio are only available for 7 days, so we can't add tests. - - class ORFOE1IE(InfoExtractor): IE_NAME = 'orf:oe1' 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): show_id = self._match_id(url) |