youtube-dl

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

commit 079d1dcd8033b7c1470ad84899967d787cf1dec7
parent 7b24bbdf49f4ad17a1cb134f9bf6a1075cb3f655
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  1 Jan 2015 00:11:56 +0600

[tnaflix] Fix title extraction

Diffstat:
Myoutube_dl/extractor/tnaflix.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tnaflix.py b/youtube_dl/extractor/tnaflix.py @@ -12,7 +12,7 @@ from ..utils import ( class TNAFlixIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?tnaflix\.com/(?P<cat_id>[\w-]+)/(?P<display_id>[\w-]+)/video(?P<id>\d+)' - _TITLE_REGEX = None + _TITLE_REGEX = r'<title>(.+?) - TNAFlix Porn Videos</title>' _DESCRIPTION_REGEX = r'<h3 itemprop="description">([^<]+)</h3>' _CONFIG_REGEX = r'flashvars\.config\s*=\s*escape\("([^"]+)"'