mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 19:45:24 +00:00
Fix args
This commit is contained in:
parent
511d08bc76
commit
586e862aa6
@ -149,7 +149,7 @@ def capture_ffmpeg_real_time(ffmpeg_command: list, description: str) -> None:
|
||||
process = subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
|
||||
|
||||
# Start a thread to capture and print output
|
||||
output_thread = threading.Thread(target=capture_output, Parameters=(process, description))
|
||||
output_thread = threading.Thread(target=capture_output, args=(process, description))
|
||||
output_thread.start()
|
||||
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user