mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:37:06 -05:00 
			
		
		
		
	[peertube] Detect embed URLs in generic extraction (closes #21666)
This commit is contained in:
		@@ -168,7 +168,7 @@ class PeerTubeIE(InfoExtractor):
 | 
				
			|||||||
    @staticmethod
 | 
					    @staticmethod
 | 
				
			||||||
    def _extract_peertube_url(webpage, source_url):
 | 
					    def _extract_peertube_url(webpage, source_url):
 | 
				
			||||||
        mobj = re.match(
 | 
					        mobj = re.match(
 | 
				
			||||||
            r'https?://(?P<host>[^/]+)/videos/watch/(?P<id>%s)'
 | 
					            r'https?://(?P<host>[^/]+)/videos/(?:watch|embed)/(?P<id>%s)'
 | 
				
			||||||
            % PeerTubeIE._UUID_RE, source_url)
 | 
					            % PeerTubeIE._UUID_RE, source_url)
 | 
				
			||||||
        if mobj and any(p in webpage for p in (
 | 
					        if mobj and any(p in webpage for p in (
 | 
				
			||||||
                '<title>PeerTube<',
 | 
					                '<title>PeerTube<',
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user