Community
Arnold General Rendering Forum
abbrechen
Suchergebnisse werden angezeigt für 
Anzeigen  nur  | Stattdessen suchen nach 
Meintest du: 

how to specify render range in kick

2 ANTWORTEN 2
GELÖST
Antworten
Nachricht 1 von 3
daniel.j.rutter
463 Aufrufe, 2 Antworten

how to specify render range in kick

Hi All, I'm trying to render additional frames to an existing render using the syntax below and can't figure out the command to render a specific frame range. Any help would be appreciated.

Thanks,

Dan

@echo off
REM
REM # Set Frame Count
set count=660
setlocal EnableDelayedExpansion
REM
REM # Set Scene ASS file name
set SCENE=C:\Users\drutter\Desktop\LCROSS\shot_01_ASS
REM # Set Arnold folder path
set MTOA_PATH=C:\solidangle\mtoadeploy\2019\bin
REM
REM # Set Shader Path
set SHADER_SEARCH_PATH=C:\solidangle\mtoadeploy\2019\shaders
REM
REM # Set Bin Path for Kick command
set MTOA_BIN_PATH=C:\solidangle\mtoadeploy\2019\bin
REM
REM # Kick Sequence with For Loop count
REM # Current setup below disables display window, display progressive, and has verbosity level 4
for /L %%i in (1, 1, %count%) do (
     set "frame=00000%%i"
     set frame=!frame:~-4!
     C:\solidangle\mtoadeploy\2019\bin\kick.exe -i C:\Users\drutter\Desktop\LCROSS\shot_01_ASS\Shot_01_camera__!frame!.ass C:\Users\drutter\Desktop\LCROSS\shot_01_ASS\Shot_01_lights.ass C:\Users\drutter\Desktop\LCROSS\shot_01_ASS\Shot_01_LCROSS.ass C:\Users\drutter\Desktop\LCROSS\shot_01_ASS\Shot_01_LRO1__!frame!.ass C:\Users\drutter\Desktop\LCROSS\shot_01_ASS\Shot_01_LRO__!frame!.ass -dw -dp -v 4
-l C:\solidangle\mtoadeploy\2019\shaders 
)
@echo off
2 ANTWORTEN 2
Nachricht 2 von 3
Stephen.Blair
als Antwort auf: daniel.j.rutter

FOR /L %variable IN (start,step,end) DO command [command-parameters]
    The set is a sequence of numbers from start to end, by step amount.
    So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would
    generate the sequence (5 4 3 2 1)

For example, for frames 3 to 16

set count=16
for /L %%i in (3, 1, %count%) do (
	echo %%i
)


// Stephen Blair
// Arnold Renderer Support
Nachricht 3 von 3
daniel.j.rutter
als Antwort auf: daniel.j.rutter

Thanks Stephen! You saved me again!

Dan

Sie finden nicht, was Sie suchen? Fragen Sie die Community oder teilen Sie Ihr Wissen mit anderen.

In Foren veröffentlichen  

Autodesk Design & Make Report