summary refs log tree commit diff
diff options
context:
space:
mode:
authorpyed <iAbdulElah@Gmail.com>2013-10-27 01:19:38 +0300
committerpyed <iAbdulElah@Gmail.com>2013-10-27 01:19:38 +0300
commit14e10b2b6ec0d1ac3af36cc0458673ec89a88f03 (patch)
tree41c5dccf76553461a8b771a7e15786441be8b954
parent49a25557b082a147c875015ceeecb370671f025c (diff)
downloadyoutube-dl-14e10b2b6ec0d1ac3af36cc0458673ec89a88f03.tar.gz
youtube-dl-14e10b2b6ec0d1ac3af36cc0458673ec89a88f03.tar.xz
youtube-dl-14e10b2b6ec0d1ac3af36cc0458673ec89a88f03.zip
[addanime] try to download HQ before normal
-rw-r--r--youtube_dl/extractor/addanime.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/youtube_dl/extractor/addanime.py b/youtube_dl/extractor/addanime.py
index 82a785a19..adbda194a 100644
--- a/youtube_dl/extractor/addanime.py
+++ b/youtube_dl/extractor/addanime.py
@@ -17,8 +17,8 @@ class AddAnimeIE(InfoExtractor):
     IE_NAME = u'AddAnime'
     _TEST = {
         u'url': u'http://www.add-anime.net/watch_video.php?v=24MR3YO5SAS9',
-        u'file': u'24MR3YO5SAS9.flv',
-        u'md5': u'1036a0e0cd307b95bd8a8c3a5c8cfaf1',
+        u'file': u'24MR3YO5SAS9.mp4',
+        u'md5': u'3f8e232ad52163c87fa23897e736cb2c',
         u'info_dict': {
             u"description": u"One Piece 606",
             u"title": u"One Piece 606"
@@ -60,8 +60,12 @@ class AddAnimeIE(InfoExtractor):
                 note=u'Confirming after redirect')
             webpage = self._download_webpage(url, video_id)
 
-        video_url = self._search_regex(r"var normal_video_file = '(.*?)';",
+        video_url = self._search_regex(r"var hq_video_file = '(.*?)';",
                                        webpage, u'video file URL')
+        if not video_url:  # if there's no hq_video_file, get normal_video_file
+            video_url = self._search_regex(r"var normal_video_file = '(.*?)';",
+                                           webpage, u'video file URL')
+        video_extension = video_url[-3:]  # mp4 or flv ?
         video_title = self._og_search_title(webpage)
         video_description = self._og_search_description(webpage)
 
@@ -69,7 +73,7 @@ class AddAnimeIE(InfoExtractor):
             '_type': 'video',
             'id':  video_id,
             'url': video_url,
-            'ext': 'flv',
+            'ext': video_extension,
             'title': video_title,
             'description': video_description
         }