mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Better fix for getting source url's
This commit is contained in:
		 Johny Mo Swag
					Johny Mo Swag
				
			
				
					committed by
					
						 Philipp Hagemeister
						Philipp Hagemeister
					
				
			
			
				
	
			
			
			 Philipp Hagemeister
						Philipp Hagemeister
					
				
			
						parent
						
							f23a03a89b
						
					
				
				
					commit
					7da5556ac2
				
			| @@ -3487,7 +3487,7 @@ class WorldStarHipHopIE(InfoExtractor): | ||||
|     IE_NAME = u'WorldStarHipHop' | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         _src_url = r"""(http://(hw-videos|hw-post)[0-9]*.*(?:mp4|flv))""" | ||||
|         _src_url = r'so\.addVariable\("file","(.*?)"\)' | ||||
|  | ||||
|         m = re.match(self._VALID_URL, url) | ||||
|         video_id = m.group('id') | ||||
| @@ -3497,7 +3497,7 @@ class WorldStarHipHopIE(InfoExtractor): | ||||
|         mobj = re.search(_src_url, webpage_src) | ||||
|  | ||||
|         if mobj is not None: | ||||
|             video_url = mobj.group() | ||||
|             video_url = mobj.group(1) | ||||
|             if 'mp4' in video_url: | ||||
|                 ext = 'mp4' | ||||
|             else: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user