summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-03 20:47:11 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-03 20:47:11 +0600
commit687cb3ad35ac49f1053c1ea52e3b6db18b3aa1cf (patch)
tree3baa8b7f7c9823f9eaed5deb4cd071af0ae32ca1
parent8f9478412424b87e4fb77be53d239c13932b078a (diff)
downloadyoutube-dl-687cb3ad35ac49f1053c1ea52e3b6db18b3aa1cf.tar.gz
youtube-dl-687cb3ad35ac49f1053c1ea52e3b6db18b3aa1cf.tar.xz
youtube-dl-687cb3ad35ac49f1053c1ea52e3b6db18b3aa1cf.zip
[24video] Fix uploader extraction
-rw-r--r--youtube_dl/extractor/twentyfourvideo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/twentyfourvideo.py b/youtube_dl/extractor/twentyfourvideo.py
index 67e8bfea0..c1ee1decc 100644
--- a/youtube_dl/extractor/twentyfourvideo.py
+++ b/youtube_dl/extractor/twentyfourvideo.py
@@ -15,7 +15,7 @@ class TwentyFourVideoIE(InfoExtractor):
     _TESTS = [
         {
             'url': 'http://www.24video.net/video/view/1044982',
-            'md5': '48dd7646775690a80447a8dca6a2df76',
+            'md5': 'd041af8b5b4246ea466226a0d6693345',
             'info_dict': {
                 'id': '1044982',
                 'ext': 'mp4',
@@ -54,7 +54,7 @@ class TwentyFourVideoIE(InfoExtractor):
             webpage, 'upload date'))
 
         uploader = self._html_search_regex(
-            r'Загрузил\s*<a href="/jsecUser/movies/[^"]+" class="link">([^<]+)</a>',
+            r'class="video-uploaded"[^>]*>\s*<a href="/jsecUser/movies/[^"]+"[^>]*>([^<]+)</a>',
             webpage, 'uploader', fatal=False)
 
         view_count = int_or_none(self._html_search_regex(