mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[letv] Reduce duplicated codes
This commit is contained in:
		| @@ -281,14 +281,17 @@ class LetvCloudIE(InfoExtractor): | ||||
|             "uu=" + uu + "&vu=" + vu) | ||||
|         play_json = self._download_json(play_json_req, media_id, 'Downloading playJson data') | ||||
|  | ||||
|         formats = [{ | ||||
|             'url': base64.b64decode(media['play_url']['main_url'].encode('utf-8')).decode("utf-8"), | ||||
|             'ext': 'mp4', | ||||
|             'format_id': int_or_none(media.get('play_url', {}).get('vtype')), | ||||
|             'format_note': str_or_none(media.get('play_url', {}).get('definition')), | ||||
|             'width': int_or_none(media.get('play_url', {}).get('vwidth')), | ||||
|             'height': int_or_none(media.get('play_url', {}).get('vheight')), | ||||
|         } for media in play_json['data']['video_info']['media'].values()] | ||||
|         formats = [] | ||||
|         for media in play_json['data']['video_info']['media'].values(): | ||||
|             play_url = media['play_url'] | ||||
|             formats.append({ | ||||
|                 'url': base64.b64decode(play_url['main_url'].encode('utf-8')).decode("utf-8"), | ||||
|                 'ext': 'mp4', | ||||
|                 'format_id': int_or_none(play_url.get('vtype')), | ||||
|                 'format_note': str_or_none(play_url.get('definition')), | ||||
|                 'width': int_or_none(play_url.get('vwidth')), | ||||
|                 'height': int_or_none(play_url.get('vheight')), | ||||
|             }) | ||||
|         self._sort_formats(formats) | ||||
|  | ||||
|         return { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user