Hey @mdaniel - RecordVideo unfortunately can’t roll files mid-run – it reads setRecordVideoFile(...) only once when the node starts, so later calls still write to the first file.
If you want to keep using RecordVideo, you’d need to stop the pipeline, build/start a new one with a new filename for each 1-minute clip. For rolling clips while keeping a continuous preview, it’s better to stream ImageManip → VideoEncoder → XLinkOut and do the file rotation on the host (open a new file every 10 minutes, write 1 minute, close).
Thanks,
Oskar