mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 01:27:07 -05:00 
			
		
		
		
	[youporn] Modernize
This commit is contained in:
		@@ -1,3 +1,6 @@
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
import json
 | 
			
		||||
import re
 | 
			
		||||
import sys
 | 
			
		||||
@@ -17,24 +20,25 @@ from ..aes import (
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class YouPornIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>youporn\.com/watch/(?P<videoid>[0-9]+)/(?P<title>[^/]+))'
 | 
			
		||||
    _VALID_URL = r'^(?P<proto>https?://)(?:www\.)?(?P<url>youporn\.com/watch/(?P<videoid>[0-9]+)/(?P<title>[^/]+))'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        u'url': u'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
 | 
			
		||||
        u'file': u'505835.mp4',
 | 
			
		||||
        u'md5': u'71ec5fcfddacf80f495efa8b6a8d9a89',
 | 
			
		||||
        u'info_dict': {
 | 
			
		||||
            u"upload_date": u"20101221",
 | 
			
		||||
            u"description": u"Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?",
 | 
			
		||||
            u"uploader": u"Ask Dan And Jennifer",
 | 
			
		||||
            u"title": u"Sex Ed: Is It Safe To Masturbate Daily?",
 | 
			
		||||
            u"age_limit": 18,
 | 
			
		||||
        'url': 'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
 | 
			
		||||
        'md5': '71ec5fcfddacf80f495efa8b6a8d9a89',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': '505835',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'upload_date': '20101221',
 | 
			
		||||
            'description': 'Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?',
 | 
			
		||||
            'uploader': 'Ask Dan And Jennifer',
 | 
			
		||||
            'title': 'Sex Ed: Is It Safe To Masturbate Daily?',
 | 
			
		||||
            'age_limit': 18,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
        video_id = mobj.group('videoid')
 | 
			
		||||
        url = 'http://www.' + mobj.group('url')
 | 
			
		||||
        url = mobj.group('proto') + 'www.' + mobj.group('url')
 | 
			
		||||
 | 
			
		||||
        req = compat_urllib_request.Request(url)
 | 
			
		||||
        req.add_header('Cookie', 'age_verified=1')
 | 
			
		||||
@@ -42,7 +46,7 @@ class YouPornIE(InfoExtractor):
 | 
			
		||||
        age_limit = self._rta_search(webpage)
 | 
			
		||||
 | 
			
		||||
        # Get JSON parameters
 | 
			
		||||
        json_params = self._search_regex(r'var currentVideo = new Video\((.*)\);', webpage, u'JSON parameters')
 | 
			
		||||
        json_params = self._search_regex(r'var currentVideo = new Video\((.*)\);', webpage, 'JSON parameters')
 | 
			
		||||
        try:
 | 
			
		||||
            params = json.loads(json_params)
 | 
			
		||||
        except:
 | 
			
		||||
@@ -61,7 +65,7 @@ class YouPornIE(InfoExtractor):
 | 
			
		||||
        # Get all of the links from the page
 | 
			
		||||
        DOWNLOAD_LIST_RE = r'(?s)<ul class="downloadList">(?P<download_list>.*?)</ul>'
 | 
			
		||||
        download_list_html = self._search_regex(DOWNLOAD_LIST_RE,
 | 
			
		||||
            webpage, u'download list').strip()
 | 
			
		||||
            webpage, 'download list').strip()
 | 
			
		||||
        LINK_RE = r'<a href="([^"]+)">'
 | 
			
		||||
        links = re.findall(LINK_RE, download_list_html)
 | 
			
		||||
 | 
			
		||||
@@ -86,7 +90,7 @@ class YouPornIE(InfoExtractor):
 | 
			
		||||
            resolution = format_parts[0]
 | 
			
		||||
            height = int(resolution[:-len('p')])
 | 
			
		||||
            bitrate = int(format_parts[1][:-len('k')])
 | 
			
		||||
            format = u'-'.join(format_parts) + u'-' + dn
 | 
			
		||||
            format = '-'.join(format_parts) + '-' + dn
 | 
			
		||||
 | 
			
		||||
            formats.append({
 | 
			
		||||
                'url': video_url,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user