diff --git a/client/grpc-ffmpeg.py b/client/grpc-ffmpeg.py index 9bda5a4..32e3971 100755 --- a/client/grpc-ffmpeg.py +++ b/client/grpc-ffmpeg.py @@ -101,11 +101,11 @@ def handle_quoted_arguments(command_args): rffmpeg_command = handle_quoted_arguments(command_args) # Print the constructed command for debugging - print(rffmpeg_command) + #print(rffmpeg_command) # Convert the list to a single command string - command_str = ' '.join(rffmpeg_command) - print(command_str) + command_str = sys.argv[0].join(rffmpeg_command) + #print(command_str) # Run the command asyncio.run(run_command(command_str, USE_SSL)) \ No newline at end of file