youtube-dl

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

commit bf82b8732353f45582cfefc6cced01721fbf4154
parent b6eb74e340fd523fb0c710b3141d6f9c696069f2
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  8 May 2017 20:13:22 +0700

[nonktube] Use econfig nuevo URL

Diffstat:
Myoutube_dl/extractor/nonktube.py | 12++++--------
1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/youtube_dl/extractor/nonktube.py b/youtube_dl/extractor/nonktube.py @@ -25,13 +25,9 @@ class NonkTubeIE(NuevoBaseIE): def _real_extract(self, url): video_id = self._match_id(url) - nuevo_url = 'https://www.nonktube.com/media/nuevo/config.php?key=%s' % video_id - info = self._extract_nuevo( - nuevo_url, video_id, headers={ - 'Referer': 'https://www.nonktube.com/media/nuevo/player.swf?config=%s' % nuevo_url - }) - info.update({ - 'age_limit': 18 - }) + 'https://www.nonktube.com/media/nuevo/econfig.php?key=%s' + % video_id, video_id) + + info['age_limit'] = 18 return info