From: frenchy1983 Date: Thu, 21 May 2015 09:47:16 +0000 (+0200) Subject: [TNAFlix] Allow dot (and more) in cat_id and display_id X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=e7752cd57853718c6875b02517613d14c4c7221d;p=youtube-dl [TNAFlix] Allow dot (and more) in cat_id and display_id URLs with dots were raising a "UnsupportedError: Unsupported URL" error. --- diff --git a/youtube_dl/extractor/tnaflix.py b/youtube_dl/extractor/tnaflix.py index d48cbbf14..725edd3c7 100644 --- a/youtube_dl/extractor/tnaflix.py +++ b/youtube_dl/extractor/tnaflix.py @@ -10,23 +10,23 @@ from ..utils import ( class TNAFlixIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?tnaflix\.com/(?P[\w-]+)/(?P[\w-]+)/video(?P\d+)' + _VALID_URL = r'https?://(?:www\.)?tnaflix\.com/(?P[^/]+)/(?P[^/]+)/video(?P\d+)' _TITLE_REGEX = r'(.+?) - TNAFlix Porn Videos' _DESCRIPTION_REGEX = r'

([^<]+)

' _CONFIG_REGEX = r'flashvars\.config\s*=\s*escape\("([^"]+)"' _TEST = { - 'url': 'http://www.tnaflix.com/porn-stars/Carmella-Decesare-striptease/video553878', - 'md5': 'ecf3498417d09216374fc5907f9c6ec0', + 'url': 'https://www.tnaflix.com/amateur-porn/bunzHD-Ms.Donk/video358632', + 'md5': '6c431ea56756497e227fb3f01a687869', 'info_dict': { - 'id': '553878', - 'display_id': 'Carmella-Decesare-striptease', + 'id': '358632', + 'display_id': 'bunzHD-Ms.Donk', 'ext': 'mp4', - 'title': 'Carmella Decesare - striptease', - 'description': '', + 'title': 'bunzHD Ms.Donk', + 'description': 'bubble booty ebony teen goddess Ms.Donk has a firm ass and acts like she is shy but really she is a freak in the sheets watch her 20 min XX rated vid at bunzHD.com click on the catalog link', 'thumbnail': 're:https?://.*\.jpg$', - 'duration': 91, + 'duration': 394, 'age_limit': 18, } }