Skip to content

Commit

Permalink
ffmpeg_editlist: tmpfile as .mkv so it can be tested during encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdarst committed Aug 30, 2023
1 parent 307655b commit 7f25461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffmpeg_editlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def main(argv=sys.argv[1:]):
raise RuntimeError(f"unknown segment_type: {segment_type}")

# Do encoding
tmp_out = str(Path(tmpdir)/('tmpout-%02d.mp4'%i))
tmp_out = str(Path(tmpdir)/('tmpout-%02d.mkv'%i))
tmp_outputs.append(tmp_out)
cmd = ['ffmpeg', '-loglevel', str(LOGLEVEL),
*encoding_args,
Expand Down

0 comments on commit 7f25461

Please sign in to comment.