If i want to export movie, working as expected like this :
Code: Select all
tv_firstimage
frame_in = result
tv_lastimage
frame_out = result
tv_LockDisplay "Export MOV..."
tv_SaveMode "Mode=1015"
tv_SaveSequence playblastFullPath frame_in frame_out
tv_UnLockDisplay
if i get frame_in, frame_out from tv_ReadUserString
Code: Select all
tv_ReadUserString "VfxConfig" "StartFrame" ""
blastFrameIn = result
tv_ReadUserString "VfxConfig" "EndFrame" ""
blastFrameOut = result
I think there an issue with string > integer, and that why tv_SaveSequence with tv_ReadUserString parametrers doesn't work.
i'm good ? how can i convert string to integer ?
regards,