diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-01-03 20:43:40 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-01-03 20:43:40 +0600 | 
| commit | c7e675940ca06a74f068164b25d3afb9b657ff24 (patch) | |
| tree | eea71d42a7892b44f47fe41228a7e8eb5d296dbd /youtube_dl/extractor/bbccouk.py | |
| parent | d26b1317edd31d85f8fa68d796f185f7ba65c282 (diff) | |
[bbccouk] Add support for music clips (Closes #4143)
Diffstat (limited to 'youtube_dl/extractor/bbccouk.py')
| -rw-r--r-- | youtube_dl/extractor/bbccouk.py | 33 | 
1 files changed, 32 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/bbccouk.py b/youtube_dl/extractor/bbccouk.py index 5865a6e39..1cf48fe0d 100644 --- 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))/(?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 = [          { @@ -85,8 +85,39 @@ class BBCCoUkIE(SubtitlesInfoExtractor):                  'skip_download': True,              }          }, { +            'url': 'http://www.bbc.co.uk/music/clips/p02frcc3', +            'note': 'Audio', +            'info_dict': { +                'id': 'p02frcch', +                'ext': 'flv', +                'title': 'Pete Tong, Past, Present and Future Special, Madeon - After Hours mix', +                'description': 'French house superstar Madeon takes us out of the club and onto the after party.', +                'duration': 3507, +            }, +            'params': { +                # rtmp download +                'skip_download': True, +            } +        }, { +            'url': 'http://www.bbc.co.uk/music/clips/p025c0zz', +            'note': 'Video', +            'info_dict': { +                'id': 'p025c103', +                'ext': 'flv', +                'title': 'Reading and Leeds Festival, 2014, Rae Morris - Closer (Live on BBC Three)', +                'description': 'Rae Morris performs Closer for BBC Three at Reading 2014', +                'duration': 226, +            }, +            'params': { +                # rtmp download +                'skip_download': True, +            } +        }, {              'url': 'http://www.bbc.co.uk/iplayer/playlist/p01dvks4',              'only_matching': True, +        }, { +            'url': 'http://www.bbc.co.uk/music/clips#p02frcc3', +            'only_matching': True,          }      ] | 
