mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-14 02:37:00 -07:00
fix VideoEd.py
This commit is contained in:
parent
1d52e665f8
commit
87236921a5
1 changed files with 2 additions and 1 deletions
|
@ -75,7 +75,8 @@ def cut_video ( input_file, from_time=None, to_time=None, audio_track_id=None, b
|
|||
job_v = job['v:0']
|
||||
job_a = job['a:' + str(audio_track_id) + '?' ]
|
||||
|
||||
job = ffmpeg.output (job_v, job_a, str(output_file_path), **kwargs)
|
||||
job = ffmpeg.output(job_v, job_a, str(output_file_path), **kwargs).overwrite_output()
|
||||
|
||||
try:
|
||||
job = job.run()
|
||||
except:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue