ON THIS PAGE

  • Replay Metadata Only Node
  • How to place it
  • Inputs and Outputs
  • Usage
  • Reference

Replay Metadata Only Node

ReplayMetadataOnly host node is used for replaying recorded metadata to Buffer messages.

How to place it

Python
C++

Python

Python
1with dai.Pipeline() as pipeline:
2    replay = pipeline.create(dai.node.ReplayMetadataOnly)

Inputs and Outputs

Usage

Python
C++

Python

Python
1with dai.Pipeline() as pipeline:
2    replay = pipeline.create(dai.node.ReplayMetadataOnly)
3    replay.setReplayFile("metadata.mcap")
4    replay.setFps(30)
5    replay.setLoop(False)

Reference

class

dai::node::ReplayMetadataOnly

#include Replay.hpp
variable
Output out
Output for any type of messages to be transferred over XLink streamDefault queue is blocking with size 8
function
void run()
function
std::filesystem::path getReplayFile()
function
float getFps()
function
bool getLoop()
function
ReplayMetadataOnly & setReplayFile(const std::filesystem::path & replayFile)
function
ReplayMetadataOnly & setFps(float fps)
function
ReplayMetadataOnly & setLoop(bool loop)

Need assistance?

Head over to Discussion Forum for technical support or any other questions you might have.