mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-07 05:22:06 -07:00
converter output filename - fixed indexing, now starts from 00001 as extracted frames
This commit is contained in:
parent
029cabea3d
commit
96d0e3fbee
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue