youtube-dl

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

commit 0692ef86ef85da69074b00b5525c13bfde9159de
parent 439d9be27dc3cf811f3337e40c3222bc8d2ed339
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 30 Jan 2015 23:47:09 +0600

[bbccouk] Improve _VALID_URL

Diffstat:
Myoutube_dl/extractor/bbccouk.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/bbccouk.py b/youtube_dl/extractor/bbccouk.py @@ -10,7 +10,7 @@ from ..compat import compat_HTTPError class BBCCoUkIE(SubtitlesInfoExtractor): IE_NAME = 'bbc.co.uk' IE_DESC = 'BBC iPlayer' - _VALID_URL = r'https?://(?:www\.)?bbc\.co\.uk/(?:(?:(?:programmes|iplayer/(?:episode|playlist))/)|music/clips[/#])(?P<id>[\da-z]{8})' + _VALID_URL = r'https?://(?:www\.)?bbc\.co\.uk/(?:(?:(?:programmes|iplayer(?:/[^/]+)?/(?:episode|playlist))/)|music/clips[/#])(?P<id>[\da-z]{8})' _TESTS = [ { @@ -118,6 +118,9 @@ class BBCCoUkIE(SubtitlesInfoExtractor): }, { 'url': 'http://www.bbc.co.uk/music/clips#p02frcc3', 'only_matching': True, + }, { + 'url': 'http://www.bbc.co.uk/iplayer/cbeebies/episode/b0480276/bing-14-atchoo', + 'only_matching': True, } ]