diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-01-02 19:22:39 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-01-02 19:22:39 +0600 | 
| commit | f20a11ed257f21a1c658f827e0c2129a72582adf (patch) | |
| tree | 992a991dd3ce6d0a8e29a780e3422e62b5525df0 | |
| parent | 76a353c9e5511a522b5331cb3f74d4215341791c (diff) | |
[bbccouk] Extend _VALID_URL (Closes #8116)
| -rw-r--r-- | youtube_dl/extractor/bbc.py | 15 | 
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 923273fb2..5c621a32b 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -23,7 +23,17 @@ class BBCCoUkIE(InfoExtractor):      IE_NAME = 'bbc.co.uk'      IE_DESC = 'BBC iPlayer'      _ID_REGEX = r'[pb][\da-z]{7}' -    _VALID_URL = r'https?://(?:www\.)?bbc\.co\.uk/(?:(?:programmes/(?!articles/)|iplayer(?:/[^/]+)?/(?:episode/|playlist/))|music/clips[/#])(?P<id>%s)' % _ID_REGEX +    _VALID_URL = r'''(?x) +                    https?:// +                        (?:www\.)?bbc\.co\.uk/ +                        (?: +                            programmes/(?!articles/)| +                            iplayer(?:/[^/]+)?/(?:episode/|playlist/)| +                            music/clips[/#]| +                            radio/player/ +                        ) +                        (?P<id>%s) +                    ''' % _ID_REGEX      _MEDIASELECTOR_URLS = [          # Provides HQ HLS streams with even better quality that pc mediaset but fails @@ -193,6 +203,9 @@ class BBCCoUkIE(InfoExtractor):          }, {              'url': 'http://www.bbc.co.uk/iplayer/cbeebies/episode/b0480276/bing-14-atchoo',              'only_matching': True, +        }, { +            'url': 'http://www.bbc.co.uk/radio/player/p03cchwf', +            'only_matching': True,          }      ]  | 
