mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	PEP8 applied
This commit is contained in:
		| @@ -35,10 +35,10 @@ class YoukuIE(InfoExtractor): | ||||
|  | ||||
|     def _gen_sid(self): | ||||
|         nowTime = int(time.time() * 1000) | ||||
|         random1 = random.randint(1000,1998) | ||||
|         random2 = random.randint(1000,9999) | ||||
|         random1 = random.randint(1000, 1998) | ||||
|         random2 = random.randint(1000, 9999) | ||||
|  | ||||
|         return "%d%d%d" %(nowTime,random1,random2) | ||||
|         return "%d%d%d" % (nowTime, random1, random2) | ||||
|  | ||||
|     def _get_file_ID_mix_string(self, seed): | ||||
|         mixed = [] | ||||
| @@ -49,7 +49,7 @@ class YoukuIE(InfoExtractor): | ||||
|             index  =  math.floor(seed / 65536 * len(source)) | ||||
|             mixed.append(source[int(index)]) | ||||
|             source.remove(source[int(index)]) | ||||
|         #return ''.join(mixed) | ||||
|         # return ''.join(mixed) | ||||
|         return mixed | ||||
|  | ||||
|     def _get_file_id(self, fileId, seed): | ||||
| @@ -100,12 +100,12 @@ class YoukuIE(InfoExtractor): | ||||
|         keys = [s['k'] for s in config['data'][0]['segs'][format]] | ||||
|         # segs is usually a dictionary, but an empty *list* if an error occured. | ||||
|  | ||||
|         files_info=[] | ||||
|         files_info = [] | ||||
|         sid = self._gen_sid() | ||||
|         fileid = self._get_file_id(fileid, seed) | ||||
|  | ||||
|         #column 8,9 of fileid represent the segment number | ||||
|         #fileid[7:9] should be changed | ||||
|         # column 8,9 of fileid represent the segment number | ||||
|         # fileid[7:9] should be changed | ||||
|         for index, key in enumerate(keys): | ||||
|             temp_fileid = '%s%02X%s' % (fileid[0:8], index, fileid[10:]) | ||||
|             download_url = 'http://k.youku.com/player/getFlvPath/sid/%s_%02X/st/flv/fileid/%s?k=%s' % (sid, index, temp_fileid, key) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jouke Waleson
					Jouke Waleson