Browse Source
[peertube] Add support for embed and API URLs
master
Sergey M․
6 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
8 additions and
1 deletions
-
youtube_dl/extractor/peertube.py
|
@ -116,7 +116,8 @@ class PeerTubeIE(InfoExtractor): |
|
|
videos\.tcit\.fr| |
|
|
videos\.tcit\.fr| |
|
|
peertube\.cpy\.re |
|
|
peertube\.cpy\.re |
|
|
) |
|
|
) |
|
|
/videos/watch/(?P<id>[^/?#&]+) |
|
|
|
|
|
|
|
|
/(?:videos/(?:watch|embed)|api/v\d/videos)/ |
|
|
|
|
|
(?P<id>[^/?#&]+) |
|
|
''' |
|
|
''' |
|
|
_TESTS = [{ |
|
|
_TESTS = [{ |
|
|
'url': 'https://peertube.moe/videos/watch/2790feb0-8120-4e63-9af3-c943c69f5e6c', |
|
|
'url': 'https://peertube.moe/videos/watch/2790feb0-8120-4e63-9af3-c943c69f5e6c', |
|
@ -147,6 +148,12 @@ class PeerTubeIE(InfoExtractor): |
|
|
# nsfw |
|
|
# nsfw |
|
|
'url': 'https://tube.22decembre.eu/videos/watch/9bb88cd3-9959-46d9-9ab9-33d2bb704c39', |
|
|
'url': 'https://tube.22decembre.eu/videos/watch/9bb88cd3-9959-46d9-9ab9-33d2bb704c39', |
|
|
'only_matching': True, |
|
|
'only_matching': True, |
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'https://tube.22decembre.eu/videos/embed/fed67262-6edb-4d1c-833b-daa9085c71d7', |
|
|
|
|
|
'only_matching': True, |
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'https://tube.openalgeria.org/api/v1/videos/c1875674-97d0-4c94-a058-3f7e64c962e8', |
|
|
|
|
|
'only_matching': True, |
|
|
}] |
|
|
}] |
|
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
def _real_extract(self, url): |
|
|