We can log to files in a streaming fashion already today:
import rerun as rr
import time
rr.init("rerun_example_points3d_simple")
rr.save("/tmp/stream.rrd")
for i in range(0, 100000):
rr.set_time_sequence("frame", i)
rr.log("points", rr.TextLog(f"frame {i}"))
time.sleep(0.2)
That's great, but we cannot visualize file recordings in a streaming fashion:
$ rerun /tmp/stream.rrd # will only show what it is there _right now_
We can log to files in a streaming fashion already today:
That's great, but we cannot visualize file recordings in a streaming fashion:
$ rerun /tmp/stream.rrd # will only show what it is there _right now_