Hi,
This is not an option of sam-do, but there is a node to do that: timeshift. For sam-do, it's a just retime node.
sam do r input-###.png // timeshift 50 // w output-###.png
This allows you to choose where you want to modify the time into the graph. For example, if you write the time on the image:
sam do r input-###.png // timeshift 50 // text text="str(tuttleArgs().time)" expression=1 // w output-###.png
It will write 60 on the "output-060.png" image.
And if you put the timeshift at the end, it will write the source time:
sam do r input-###.png // text text="str(tuttleArgs().time)" expression=1 // timeshift 50 // w output-###.png
It will write 10 on the "output-060.png" image.
Regards,
Fabien