This commit is contained in:
Zen 2020-12-27 01:36:04 +02:00
parent 430c572e6b
commit e4088ec39b

View file

@ -190,7 +190,7 @@ class EncodingManager:
ENCODERS[project.encoder].on_after_chunk(project, chunk)
# get the number of encoded frames, if no check assume it worked and encoded same number of frames
encoded_frames = chunk_frames if project.no_check else frame_check_output(chunk, chunk_frames)
encoded_frames = chunk_frames if project.no_check else self.frame_check_output(chunk, chunk_frames)
# write this chunk as done if it encoded correctly
if encoded_frames == chunk_frames: