Remove 15 second limit (was for testing)

This commit is contained in:
Derek Schmidt 2019-12-03 20:33:58 -07:00
parent 71341fb492
commit 1d85fb8ee2
Signed by: skeh
GPG key ID: 0F5D491793B4035A

View file

@ -39,8 +39,8 @@ def main(infile, outdir, hardcode=None, audio_lang='eng'):
video = ffmpeg.overlay(raw.video, raw[sub_index], eof_action='pass')
else:
video = raw.video
ffmpeg.output(video, raw[audio_index], outfile, t=15, acodec='aac', vcodec='libx264', crf='18', preset='slow').run()
ffmpeg.output(video, raw[audio_index], outfile, acodec='aac', vcodec='libx264', crf='18', preset='slow').run()
if __name__ == '__main__':
main()