Use FFMPEG_BIN instead of "ffmpeg" for sound incorporation

This commit is contained in:
Grant Sanderson 2021-12-21 10:58:58 -08:00
parent 7aa05572ab
commit 5aa8d15d85

View file

@ -308,7 +308,7 @@ class SceneFileWriter(object):
) )
temp_file_path = stem + "_temp" + ext temp_file_path = stem + "_temp" + ext
commands = [ commands = [
"ffmpeg", FFMPEG_BIN,
"-i", movie_file_path, "-i", movie_file_path,
"-i", sound_file_path, "-i", sound_file_path,
'-y', # overwrite output file if it exists '-y', # overwrite output file if it exists