Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Wingerberg committed Oct 22, 2024
1 parent 2a1ddc2 commit 0a584f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/grpc-ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit 0a584f0

Please sign in to comment.