ffmpeg command waiting bugfix
This commit is contained in:
parent
6a3fde461e
commit
71e2857cf7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue