From eb95b31089f5a107cb7efe0c55d45beb1399ebbb Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Sun, 3 Oct 2021 15:11:25 -0400 Subject: [PATCH] download only in real time --- downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downloader.py b/downloader.py index f9a6bb0..a5c4787 100644 --- a/downloader.py +++ b/downloader.py @@ -126,7 +126,7 @@ class DirectDownloader(Thread, StreamSource): self.exit = False self.process = ( ffmpeg - .input(url) + .input(url, re=None) .output('pipe:', format='mp3') .run_async(pipe_stdout=True, pipe_stderr=True) )