converter output filename - fixed indexing, now starts from 00001 as extracted frames

This commit is contained in:
iperov 2019-08-26 10:39:04 +04:00
parent 029cabea3d
commit 96d0e3fbee

View file

@ -213,7 +213,7 @@ class ConvertSubprocessor(Subprocessor):
for i in range( len(self.frames) ):
frame = self.frames[i]
frame.idx = i
frame.output_filename = self.output_path / ('%.5d.png' % i)
frame.output_filename = self.output_path / ('%.5d.png' % (i+1) )
frames[0].cfg = self.converter_config.copy()