Skip to content

Commit

Permalink
catch all frames and ignore missing frames
Browse files Browse the repository at this point in the history
  • Loading branch information
Yerusalmi committed Jun 23, 2023
1 parent f9198e0 commit bb00df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion component/timelapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ async def render(self, webrequest=None):
# prepare output filename
now = datetime.now()
date_time = now.strftime(self.config['time_format_code'])
inputfiles = self.temp_dir + "frame%6d.jpg"
inputfiles = self.temp_dir + "frame*.jpg"
outfile = f"timelapse_{gcodefilename}_{date_time}"

# dublicate last frame
Expand Down

0 comments on commit bb00df1

Please sign in to comment.