mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +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:
		
							
								
								
									
										31
									
								
								yt_dlp/extractor/freespeech.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								yt_dlp/extractor/freespeech.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from .youtube import YoutubeIE | ||||
|  | ||||
|  | ||||
| class FreespeechIE(InfoExtractor): | ||||
|     IE_NAME = 'freespeech.org' | ||||
|     _VALID_URL = r'https?://(?:www\.)?freespeech\.org/stories/(?P<id>.+)' | ||||
|     _TEST = { | ||||
|         'add_ie': ['Youtube'], | ||||
|         'url': 'http://www.freespeech.org/stories/fcc-announces-net-neutrality-rollback-whats-stake/', | ||||
|         'info_dict': { | ||||
|             'id': 'waRk6IPqyWM', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'What\'s At Stake - Net Neutrality Special', | ||||
|             'description': 'Presented by MNN and FSTV', | ||||
|             'upload_date': '20170728', | ||||
|             'uploader_id': 'freespeechtv', | ||||
|             'uploader': 'freespeechtv', | ||||
|         }, | ||||
|     } | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         display_id = self._match_id(url) | ||||
|         webpage = self._download_webpage(url, display_id) | ||||
|         youtube_url = self._search_regex( | ||||
|             r'data-video-url="([^"]+)"', | ||||
|             webpage, 'youtube url') | ||||
|  | ||||
|         return self.url_result(youtube_url, YoutubeIE.ie_key()) | ||||
		Reference in New Issue
	
	Block a user
	 Pccode66
					Pccode66