From 9313d4dc10b41e31966ffd417f1a4ceac78629a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 21 Mar 2022 10:11:51 +0100 Subject: [PATCH] [pinterest] do not force 'm3u8_native' for video downloads (#2436) --- gallery_dl/extractor/pinterest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gallery_dl/extractor/pinterest.py b/gallery_dl/extractor/pinterest.py index 25344e8c..466bbe85 100644 --- a/gallery_dl/extractor/pinterest.py +++ b/gallery_dl/extractor/pinterest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2016-2021 Mike Fährmann +# Copyright 2016-2022 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -54,7 +54,6 @@ class PinterestExtractor(Extractor): if pin["extension"] == "m3u8": url = "ytdl:" + url pin["extension"] = "mp4" - pin["_ytdl_extra"] = {"protocol": "m3u8_native"} yield Message.Url, url, pin