Skip to content

Commit

Permalink
Fix GIF speed (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
redphx committed May 12, 2023
1 parent 7f8c3db commit ce3a58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apixoo/pixel_bean.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def save_to_gif(
gif_frames[0].save(
output_path,
append_images=gif_frames[1:],
duration=(1000 / self._speed),
duration=self._speed,
save_all=True,
optimize=False,
interlace=False,
Expand Down

0 comments on commit ce3a58e

Please sign in to comment.