From cc57d5c8dc7aef36144a852a2f029f27a89cd1dd Mon Sep 17 00:00:00 2001 From: tretrauit Date: Thu, 21 Mar 2024 01:33:11 +0700 Subject: [PATCH] fix: use global ffmpeg_bin --- explorers/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorers/__main__.py b/explorers/__main__.py index 525f257..dcba990 100644 --- a/explorers/__main__.py +++ b/explorers/__main__.py @@ -17,7 +17,7 @@ ffmpeg_bin: str = None def download_m3u8(m3u8_url: str, output_path: Path): ff = FfmpegProgress( [ - "ffmpeg", + ffmpeg_bin, "-headers", f"User-Agent: {constants.USER_AGENT}", "-headers",