Skip to content

Commit

Permalink
Added unsafe concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisMayo committed Apr 25, 2023
1 parent 71dbf7b commit eaa3cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion objection_engine/anim.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def ace_attorney_anim(config: List[Dict], output_filename: str = "output.mp4", r
videos.sort(key=lambda item : int(item[:-4]))
for video in videos:
txt.write('file ' + root_filename + '/' +video + '\n')
textInput = ffmpeg.input(text_filename, format='concat')
textInput = ffmpeg.input(text_filename, format='concat', safe=0)
audio = ffmpeg.input(audio_filename)
if os.path.exists(output_filename):
os.remove(output_filename)
Expand Down

0 comments on commit eaa3cec

Please sign in to comment.