summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-30 21:45:49 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-30 21:45:49 +0100
commitc522adb1f0747c5b7f4c8c60e6edcc6f1809f718 (patch)
tree4f972797b557b1103ab8310236f7b557e820212f
parent7160532d41af171e6ffa41986b04bc51b934a5ad (diff)
downloadyoutube-dl-c522adb1f0747c5b7f4c8c60e6edcc6f1809f718.tar.gz
youtube-dl-c522adb1f0747c5b7f4c8c60e6edcc6f1809f718.tar.xz
youtube-dl-c522adb1f0747c5b7f4c8c60e6edcc6f1809f718.zip
[youtube] Add a normal age-gate test video
-rw-r--r--youtube_dl/extractor/youtube.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 6268b012f..2642ecfff 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -402,7 +402,20 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
                 'title': 'Burning Everyone\'s Koran',
                 'description': 'SUBSCRIBE: http://www.youtube.com/saturninefilms\n\nEven Obama has taken a stand against freedom on this issue: http://www.huffingtonpost.com/2010/09/09/obama-gma-interview-quran_n_710282.html',
             }
-        }
+        },
+        # Normal age-gate video (No vevo, embed allowed)
+        {
+            'url': 'http://youtube.com/watch?v=HtVdAasjOgU',
+            'info_dict': {
+                'id': 'HtVdAasjOgU',
+                'ext': 'mp4',
+                'title': 'The Witcher 3: Wild Hunt - The Sword Of Destiny Trailer',
+                'description': 'md5:eca57043abae25130f58f655ad9a7771',
+                'uploader': 'The Witcher',
+                'uploader_id': 'WitcherGame',
+                'upload_date': '20140605',
+            },
+        },
     ]
 
     def __init__(self, *args, **kwargs):