diff options
author | 4rensiker <4rensics@gmx.de> | 2019-01-08 02:44:42 +0100 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-01-08 08:44:42 +0700 |
commit | bcc334a3c66f2465cd63be284e389cc4c7a78203 (patch) | |
tree | 899d1a833281140ac472f1e9c1785d7f3a1d78d2 /youtube_dl | |
parent | e9a50fba8603128dcb81fa1b59206a0cb106d540 (diff) |
[dtube] Fix extraction (closes #18741)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/dtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dtube.py b/youtube_dl/extractor/dtube.py index 5887887e1..20190c9cc 100644 --- a/youtube_dl/extractor/dtube.py +++ b/youtube_dl/extractor/dtube.py @@ -48,7 +48,7 @@ class DTubeIE(InfoExtractor): def canonical_url(h): if not h: return None - return 'https://ipfs.io/ipfs/' + h + return 'https://video.dtube.top/ipfs/' + h formats = [] for q in ('240', '480', '720', '1080', ''): |