mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-11-01 09:26:45 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
import re
 | 
						|
import hashlib
 | 
						|
 | 
						|
from .common import InfoExtractor
 | 
						|
 | 
						|
_md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
 | 
						|
 | 
						|
 | 
						|
class KankanIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://(?:.*?\.)?kankan\.com/.+?/(?P<id>\d+)\.shtml'
 | 
						|
 | 
						|
    _TEST = {
 | 
						|
        'url': 'http://yinyue.kankan.com/vod/48/48863.shtml',
 | 
						|
        'md5': '29aca1e47ae68fc28804aca89f29507e',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '48863',
 | 
						|
            'ext': 'flv',
 | 
						|
            'title': 'Ready To Go',
 | 
						|
        },
 | 
						|
        'skip': 'Only available from China',
 | 
						|
    }
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        video_id = self._match_id(url)
 | 
						|
        webpage = self._download_webpage(url, video_id)
 | 
						|
 | 
						|
        title = self._search_regex(r'(?:G_TITLE=|G_MOVIE_TITLE = )[\'"](.+?)[\'"]', webpage, 'video title')
 | 
						|
        surls = re.search(r'surls:\[\'.+?\'\]|lurl:\'.+?\.flv\'', webpage).group(0)
 | 
						|
        gcids = re.findall(r'http://.+?/.+?/(.+?)/', surls)
 | 
						|
        gcid = gcids[-1]
 | 
						|
 | 
						|
        info_url = 'http://p2s.cl.kankan.com/getCdnresource_flv?gcid=%s' % gcid
 | 
						|
        video_info_page = self._download_webpage(
 | 
						|
            info_url, video_id, 'Downloading video url info')
 | 
						|
        ip = self._search_regex(r'ip:"(.+?)"', video_info_page, 'video url ip')
 | 
						|
        path = self._search_regex(r'path:"(.+?)"', video_info_page, 'video url path')
 | 
						|
        param1 = self._search_regex(r'param1:(\d+)', video_info_page, 'param1')
 | 
						|
        param2 = self._search_regex(r'param2:(\d+)', video_info_page, 'param2')
 | 
						|
        key = _md5('xl_mp43651' + param1 + param2)
 | 
						|
        video_url = 'http://%s%s?key=%s&key1=%s' % (ip, path, key, param2)
 | 
						|
 | 
						|
        return {
 | 
						|
            'id': video_id,
 | 
						|
            'title': title,
 | 
						|
            'url': video_url,
 | 
						|
        }
 |