Make frame output 1-based instead of 0-based to match command line inputs and log messages.
This commit is contained in:
parent
b939ecd030
commit
9086e91081
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user