From 7acd0b11179667c3232910aecc0e262548b49163 Mon Sep 17 00:00:00 2001 From: Corey Nicholson Date: Sun, 9 Jul 2017 13:23:43 +0000 Subject: [PATCH] [vlive:playlist] Prevent VLiveIE matching playlist URLs --- youtube_dl/extractor/vlive.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index 3180b5f59..36e09850a 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -49,6 +49,10 @@ class VLiveIE(InfoExtractor): }, }] + @classmethod + def suitable(cls, url): + return False if VLivePlaylistIE.suitable(url) else super(VLiveIE, cls).suitable(url) + def _real_extract(self, url): video_id = self._match_id(url)