diff --git a/main.py b/main.py index 343a267..e5de0be 100644 --- a/main.py +++ b/main.py @@ -12,7 +12,10 @@ downloading = [] def download_stream(channel): downloading.append(channel) - subprocess.Popen(["dl-stream", "-r", channel], start_new_session=True) + # TODO: Output dl-stream to a log file + subprocess.Popen( + ["dl-stream", "-r", channel], start_new_session=True, stdout=subprocess.DEVNULL + ) # Checks if the channel_list exists and if not makes one