1
0
mirror of synced 2024-11-13 17:40:47 +01:00

Make frame output 1-based instead of 0-based to match command line inputs and log messages.

This commit is contained in:
Jennifer Taylor 2021-08-09 17:32:56 +00:00
parent b939ecd030
commit 9086e91081

View File

@ -691,7 +691,7 @@ def render_path(
movie_transform=transform,
)
):
fullname = f"{filename}-{i:{digits}}{ext}"
fullname = f"{filename}-{(i + 1):{digits}}{ext}"
try:
dirof = os.path.dirname(os.path.abspath(fullname))