1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

[peertube] Detect embed URLs in generic extraction (closes #21666)

This commit is contained in:
Sergey M․ 2019-07-06 00:42:54 +07:00
parent d1850c1a97
commit d18003a141
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -168,7 +168,7 @@ class PeerTubeIE(InfoExtractor):
@staticmethod
def _extract_peertube_url(webpage, source_url):
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)
if mobj and any(p in webpage for p in (
'<title>PeerTube<',