mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[youtube] Warn when trying to download clips
This commit is contained in:
		| @@ -1812,6 +1812,7 @@ from .yourporn import YourPornIE | ||||
| from .yourupload import YourUploadIE | ||||
| from .youtube import ( | ||||
|     YoutubeIE, | ||||
|     YoutubeClipIE, | ||||
|     YoutubeFavouritesIE, | ||||
|     YoutubeHistoryIE, | ||||
|     YoutubeTabIE, | ||||
|   | ||||
| @@ -246,7 +246,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor): | ||||
|     """Provide base functions for Youtube extractors""" | ||||
|  | ||||
|     _RESERVED_NAMES = ( | ||||
|         r'channel|c|user|playlist|watch|w|v|embed|e|watch_popup|' | ||||
|         r'channel|c|user|playlist|watch|w|v|embed|e|watch_popup|clip|' | ||||
|         r'shorts|movies|results|shared|hashtag|trending|feed|feeds|' | ||||
|         r'browse|oembed|get_video_info|iframe_api|s/player|' | ||||
|         r'storefront|oops|index|account|reporthistory|t/terms|about|upload|signin|logout') | ||||
| @@ -4727,6 +4727,16 @@ class YoutubeTruncatedURLIE(InfoExtractor): | ||||
|             expected=True) | ||||
|  | ||||
|  | ||||
| class YoutubeClipIE(InfoExtractor): | ||||
|     IE_NAME = 'youtube:clip' | ||||
|     IE_DESC = False  # Do not list | ||||
|     _VALID_URL = r'https?://(?:www\.)?youtube\.com/clip/' | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         self.report_warning('YouTube clips are not currently supported. The entire video will be downloaded instead') | ||||
|         return self.url_result(url, 'Generic') | ||||
|  | ||||
|  | ||||
| class YoutubeTruncatedIDIE(InfoExtractor): | ||||
|     IE_NAME = 'youtube:truncated_id' | ||||
|     IE_DESC = False  # Do not list | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan