diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-11 13:51:47 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-11 13:53:05 +0200 | 
| commit | b9c76aa1a9c80013ad4f2f3cd20b98ab1be430ac (patch) | |
| tree | 244908491027e0a0680aadb73e0c00614b1bcb57 | |
| parent | 0d3070d36438eeefbfb3cd6a3f792767b4d99d93 (diff) | |
[youtube] Add support for cleanvideosearch.com (Fixes #2734)
| -rw-r--r-- | test/test_all_urls.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 1 | 
2 files changed, 2 insertions, 0 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index fb39c5082..d180f23cc 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -49,6 +49,7 @@ class TestAllURLsMatching(unittest.TestCase):          self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])          self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])          self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube']) +        self.assertMatch('http://www.cleanvideosearch.com/media/action/yt/watch?videoId=8v_4O44sfjM', ['youtube'])      def test_youtube_channel_matching(self):          assertChannel = lambda url: self.assertMatch(url, ['youtube:channel']) diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 334a61833..ac2d5db4e 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -151,6 +151,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):                               )                           ))                           |youtu\.be/                                          # just youtu.be/xxxx +                         |https?://(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=                           )                       )?                                                       # all until now is optional -> you can pass the naked ID                       ([0-9A-Za-z_-]{11})                                      # here is it! the YouTube video ID  | 
