From d2bd3347ac59090c9b2c6000328ca5d1cfd1bb27 Mon Sep 17 00:00:00 2001 From: abhiTronix Date: Sun, 23 Jun 2024 20:32:12 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9A=97=EF=B8=8F=20FFhelper:=20Debugging=20`g?= =?UTF-8?q?et=5Fsupported=5Fdemuxers`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deffcode/ffhelper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deffcode/ffhelper.py b/deffcode/ffhelper.py index 084c5d6..81631ae 100644 --- a/deffcode/ffhelper.py +++ b/deffcode/ffhelper.py @@ -637,6 +637,7 @@ def is_valid_url(path, url=None, verbose=False): supported_protocols = splitted[splitted.index("Output:") + 1 : len(splitted) - 1] # RTSP is a demuxer somehow # support both RTSP and RTSPS(over SSL) + logger.critical(get_supported_demuxers(path)) supported_protocols += ( ["rtsp", "rtsps"] if "rtsp" in get_supported_demuxers(path) else [] )