ffmpeg command waiting bugfix
parent
6a3fde461e
commit
71e2857cf7
|
@ -2,7 +2,7 @@ import subprocess
|
|||
|
||||
|
||||
def generate_command(ffmpeg: str, params: str, source_file: str, output_file: str):
|
||||
command = [ffmpeg, "-y", "-i", source_file]
|
||||
command = [ffmpeg, "-i", source_file]
|
||||
command.extend(params.split())
|
||||
command.append(output_file)
|
||||
return command
|
||||
|
|
Loading…
Reference in New Issue