youtube-dl

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

commit 7f29cf545a45db2bd5c2681a2fac782ca460b153
parent 7d1219f3e053cc38a577ff2370781c1019e10a1a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 12 Jul 2016 02:10:35 +0700

[youtube] Add YouTube Red paid video reference test (#10059)

Diffstat:
Myoutube_dl/extractor/youtube.py | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -858,6 +858,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor): { 'url': 'https://www.youtube.com/watch?feature=player_embedded&amp;amp;v=V36LpHqtcDY', 'only_matching': True, + }, + { + # YouTube Red paid video (https://github.com/rg3/youtube-dl/issues/10059) + 'url': 'https://www.youtube.com/watch?v=i1Ko8UG-Tdo', + 'only_matching': True, } ]