youtube-dl

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

commit 39c52bbd32efa5367eae31af59066f045bc7fe7e
parent 6219802165d2cda4dd128b06c9435038f43b1145
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu,  4 Dec 2014 08:31:55 +0100

[myvidster] Enforce age limit in test

Diffstat:
Myoutube_dl/extractor/myvidster.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/myvidster.py b/youtube_dl/extractor/myvidster.py @@ -4,7 +4,7 @@ from .common import InfoExtractor class MyVidsterIE(InfoExtractor): - _VALID_URL = r'http://(?:www\.)?myvidster\.com/video/(?P<id>\d+)/.*$' + _VALID_URL = r'http://(?:www\.)?myvidster\.com/video/(?P<id>\d+)/' _TEST = { 'url': 'http://www.myvidster.com/video/32059805/Hot_chemistry_with_raw_love_making', @@ -15,6 +15,7 @@ class MyVidsterIE(InfoExtractor): 'upload_date': '20141027', 'uploader_id': 'utkualp', 'ext': 'mp4', + 'age_limit': 18, }, 'add_ie': ['XHamster'], }