youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 4654c1d01613e26d782c95b13ce60e5fdd84892a
parent 163e8369b0d2f6b8cc59dd1e93b20a980590648f
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 14 Jan 2016 22:07:42 +0600

[orf:fm4] Extend _VALID_URL (Closes #8234)

Diffstat:
Myoutube_dl/extractor/orf.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py @@ -170,7 +170,7 @@ class ORFOE1IE(InfoExtractor): class ORFFM4IE(InfoExtractor): IE_NAME = 'orf:fm4' IE_DESC = 'radio FM4' - _VALID_URL = r'http://fm4\.orf\.at/7tage/?#(?P<date>[0-9]+)/(?P<show>\w+)' + _VALID_URL = r'http://fm4\.orf\.at/(?:7tage/?#|player/)(?P<date>[0-9]+)/(?P<show>\w+)' def _real_extract(self, url): mobj = re.match(self._VALID_URL, url)