mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[refactor] Single quotes consistency
This commit is contained in:
		| @@ -26,7 +26,7 @@ class VideoPremiumIE(InfoExtractor): | ||||
|         webpage_url = 'http://videopremium.tv/' + video_id | ||||
|         webpage = self._download_webpage(webpage_url, video_id) | ||||
|  | ||||
|         if re.match(r"^<html><head><script[^>]*>window.location\s*=", webpage): | ||||
|         if re.match(r'^<html><head><script[^>]*>window.location\s*=', webpage): | ||||
|             # Download again, we need a cookie | ||||
|             webpage = self._download_webpage( | ||||
|                 webpage_url, video_id, | ||||
| @@ -37,10 +37,10 @@ class VideoPremiumIE(InfoExtractor): | ||||
|  | ||||
|         return { | ||||
|             'id': video_id, | ||||
|             'url': "rtmp://e%d.md.iplay.md/play" % random.randint(1, 16), | ||||
|             'play_path': "mp4:%s.f4v" % video_id, | ||||
|             'page_url': "http://videopremium.tv/" + video_id, | ||||
|             'player_url': "http://videopremium.tv/uplayer/uppod.swf", | ||||
|             'url': 'rtmp://e%d.md.iplay.md/play' % random.randint(1, 16), | ||||
|             'play_path': 'mp4:%s.f4v' % video_id, | ||||
|             'page_url': 'http://videopremium.tv/' + video_id, | ||||
|             'player_url': 'http://videopremium.tv/uplayer/uppod.swf', | ||||
|             'ext': 'f4v', | ||||
|             'title': video_title, | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․