mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Completely change project name to yt-dlp (#85)
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
This commit is contained in:
		
							
								
								
									
										33
									
								
								yt_dlp/extractor/ebaumsworld.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								yt_dlp/extractor/ebaumsworld.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,33 @@ | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| from .common import InfoExtractor | ||||
|  | ||||
|  | ||||
| class EbaumsWorldIE(InfoExtractor): | ||||
|     _VALID_URL = r'https?://(?:www\.)?ebaumsworld\.com/videos/[^/]+/(?P<id>\d+)' | ||||
|  | ||||
|     _TEST = { | ||||
|         'url': 'http://www.ebaumsworld.com/videos/a-giant-python-opens-the-door/83367677/', | ||||
|         'info_dict': { | ||||
|             'id': '83367677', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'A Giant Python Opens The Door', | ||||
|             'description': 'This is how nightmares start...', | ||||
|             'uploader': 'jihadpizza', | ||||
|         }, | ||||
|     } | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         video_id = self._match_id(url) | ||||
|         config = self._download_xml( | ||||
|             'http://www.ebaumsworld.com/video/player/%s' % video_id, video_id) | ||||
|         video_url = config.find('file').text | ||||
|  | ||||
|         return { | ||||
|             'id': video_id, | ||||
|             'title': config.find('title').text, | ||||
|             'url': video_url, | ||||
|             'description': config.find('description').text, | ||||
|             'thumbnail': config.find('image').text, | ||||
|             'uploader': config.find('username').text, | ||||
|         } | ||||
		Reference in New Issue
	
	Block a user
	 Pccode66
					Pccode66