Remove YoutubeSharedVideoIE https://github.com/rg3/youtube-dl/issues/14303
This commit is contained in:
		
				
					committed by
					
						
						Yen Chi Hsuan
					
				
			
			
				
	
			
			
			
						parent
						
							d0f2d64114
						
					
				
				
					commit
					04af3aca04
				
			@@ -1346,7 +1346,6 @@ from .youtube import (
 | 
			
		||||
    YoutubeSearchDateIE,
 | 
			
		||||
    YoutubeSearchIE,
 | 
			
		||||
    YoutubeSearchURLIE,
 | 
			
		||||
    YoutubeSharedVideoIE,
 | 
			
		||||
    YoutubeShowIE,
 | 
			
		||||
    YoutubeSubscriptionsIE,
 | 
			
		||||
    YoutubeTruncatedIDIE,
 | 
			
		||||
 
 | 
			
		||||
@@ -2040,39 +2040,6 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class YoutubeSharedVideoIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'(?:https?:)?//(?:www\.)?youtube\.com/shared\?.*\bci=(?P<id>[0-9A-Za-z_-]{11})'
 | 
			
		||||
    IE_NAME = 'youtube:shared'
 | 
			
		||||
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'https://www.youtube.com/shared?ci=1nEzmT-M4fU',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'uPDB5I9wfp8',
 | 
			
		||||
            'ext': 'webm',
 | 
			
		||||
            'title': 'Pocoyo: 90 minutos de episódios completos Português para crianças - PARTE 3',
 | 
			
		||||
            'description': 'md5:d9e4d9346a2dfff4c7dc4c8cec0f546d',
 | 
			
		||||
            'upload_date': '20160219',
 | 
			
		||||
            'uploader': 'Pocoyo - Português (BR)',
 | 
			
		||||
            'uploader_id': 'PocoyoBrazil',
 | 
			
		||||
        },
 | 
			
		||||
        'add_ie': ['Youtube'],
 | 
			
		||||
        'params': {
 | 
			
		||||
            # There are already too many Youtube downloads
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        video_id = self._match_id(url)
 | 
			
		||||
 | 
			
		||||
        webpage = self._download_webpage(url, video_id)
 | 
			
		||||
 | 
			
		||||
        real_video_id = self._html_search_meta(
 | 
			
		||||
            'videoId', webpage, 'YouTube video id', fatal=True)
 | 
			
		||||
 | 
			
		||||
        return self.url_result(real_video_id, YoutubeIE.ie_key())
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class YoutubePlaylistIE(YoutubePlaylistBaseInfoExtractor):
 | 
			
		||||
    IE_DESC = 'YouTube.com playlists'
 | 
			
		||||
    _VALID_URL = r"""(?x)(?:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user