mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[ku6] Add new extractor
This commit is contained in:
		 codelol
					codelol
				
			
				
					committed by
					
						 Philipp Hagemeister
						Philipp Hagemeister
					
				
			
			
				
	
			
			
			 Philipp Hagemeister
						Philipp Hagemeister
					
				
			
						parent
						
							9aa6637644
						
					
				
				
					commit
					05741e05d9
				
			
							
								
								
									
										38
									
								
								youtube_dl/extractor/ku6.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								youtube_dl/extractor/ku6.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| from __future__ import unicode_literals | ||||
| import re | ||||
| from .common import InfoExtractor | ||||
|  | ||||
| class Ku6IE(InfoExtractor): | ||||
|     _VALID_URL = r'http://v\.ku6\.com/show/(?P<id>[a-zA-Z0-9\-\_]+)(?:\.)*html' | ||||
|     _TEST = { | ||||
|         'url': 'http://v.ku6.com/show/JG-8yS14xzBr4bCn1pu0xw...html', | ||||
|         'info_dict': { | ||||
|             'id': 'JG-8yS14xzBr4bCn1pu0xw', | ||||
|             'ext': 'f4v', | ||||
|             u'title': u'techniques test', | ||||
|         } | ||||
|     } | ||||
|  | ||||
|  | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
|         video_id = mobj.group('id') | ||||
|  | ||||
|         webpage = self._download_webpage(url, video_id) | ||||
|         #title = self._html_search_meta('title', webpage, 'title') | ||||
|         title = self._search_regex(r'<h1 title=.*>(.*?)</h1>', webpage, 'title') | ||||
|         self.to_screen('title: '+title) | ||||
|  | ||||
|         dataUrl = 'http://v.ku6.com/fetchVideo4Player/'+video_id+'.html' | ||||
|         jsonData = self._download_json(dataUrl, video_id) | ||||
|         downloadUrl = jsonData['data']['f'] | ||||
|  | ||||
|         return { | ||||
|             'id': video_id, | ||||
|             'title': title, | ||||
|             'url': downloadUrl | ||||
|             # TODO more properties (see youtube_dl/extractor/common.py) | ||||
|  | ||||
|         } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user