mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Added an IE for freesound.org
This commit is contained in:
		| @@ -19,6 +19,7 @@ from .eighttracks import EightTracksIE | |||||||
| from .escapist import EscapistIE | from .escapist import EscapistIE | ||||||
| from .facebook import FacebookIE | from .facebook import FacebookIE | ||||||
| from .flickr import FlickrIE | from .flickr import FlickrIE | ||||||
|  | from .freesound import FreeSoundIE | ||||||
| from .funnyordie import FunnyOrDieIE | from .funnyordie import FunnyOrDieIE | ||||||
| from .gamespot import GameSpotIE | from .gamespot import GameSpotIE | ||||||
| from .gametrailers import GametrailersIE | from .gametrailers import GametrailersIE | ||||||
|   | |||||||
							
								
								
									
										27
									
								
								youtube_dl/extractor/freesound.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								youtube_dl/extractor/freesound.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | import re | ||||||
|  |  | ||||||
|  | from .common import InfoExtractor | ||||||
|  |  | ||||||
|  | class FreeSoundIE(InfoExtractor): | ||||||
|  |     _VALID_URL = r'(?:http://)?(?:www\.)?freesound\.org/people/([^/]+)/sounds/([^/]+)' | ||||||
|  |  | ||||||
|  |     def _real_extract(self, url): | ||||||
|  |         mobj = re.match(self._VALID_URL, url) | ||||||
|  |         music_id = mobj.group(2) | ||||||
|  |         webpage = self._download_webpage(url, music_id) | ||||||
|  |         title = self._html_search_regex(r'<meta property="og:title" content="([^"]*)"', | ||||||
|  |                                 webpage, 'music title') | ||||||
|  |         music_url = self._html_search_regex(r'<meta property="og:audio" content="([^"]*)"', | ||||||
|  |                                 webpage, 'music url')        | ||||||
|  |         uploader = self._html_search_regex(r'<meta property="og:audio:artist" content="([^"]*)"', | ||||||
|  |                                 webpage, 'music uploader')                                                                         | ||||||
|  |         ext = music_url.split('.')[-1] | ||||||
|  |  | ||||||
|  |         return [{ | ||||||
|  |             'id':       music_id, | ||||||
|  |             'title':    title,             | ||||||
|  |             'url':      music_url, | ||||||
|  |             'uploader': uploader, | ||||||
|  |             'ext':      ext, | ||||||
|  |         }] | ||||||
		Reference in New Issue
	
	Block a user
	 M.Yasoob Khalid
					M.Yasoob Khalid