diff options
author | MikeCol <MikeCol@gmx.net> | 2014-02-08 00:09:26 +0100 |
---|---|---|
committer | MikeCol <MikeCol@gmx.net> | 2014-02-08 00:09:26 +0100 |
commit | 3b00dea5eb53e99c3f482b65aa152a418636c126 (patch) | |
tree | 40df31a243060e3368c86135327712a12febef2e /youtube_dl/extractor/tube8.py | |
parent | 41fa1b627dfa68303389c422f6a4527905c6477a (diff) |
Extended valid urls schema
Diffstat (limited to 'youtube_dl/extractor/tube8.py')
-rw-r--r-- | youtube_dl/extractor/tube8.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tube8.py b/youtube_dl/extractor/tube8.py index 4d9d41db3..3ec9442c9 100644 --- a/youtube_dl/extractor/tube8.py +++ b/youtube_dl/extractor/tube8.py @@ -11,7 +11,7 @@ from ..aes import ( ) class Tube8IE(InfoExtractor): - _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>tube8\.com/[^/]+/[^/]+/(?P<videoid>[0-9]+)/?)' + _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>tube8\.com/.+?/(?P<videoid>\d+)/?)$' _TEST = { u'url': u'http://www.tube8.com/teen/kasia-music-video/229795/', u'file': u'229795.mp4', |