Skip to main content

Sinks

Sink elements take data from the pipeline and push it out, they contain two mandatory and one optional fields: address, filter and type

type: "file"         # string: "file", "embedding", "zmq"
address: "video.mp4" # string: url or path, depending on 'type' property
filter: [] # array of integers: source(s) to filter on (by zero-based index), no filter if list is empty
  • address is a url to either a zmq socket, video file or directory.
  • filter filtering can be performed on the input source by specifying a list of integers of the source you want to filter on. In configuration files sources are implicitly indexed top-to-bottom starting from index 0. An empty list indicates that no filtering should be performed.
  • type is source type, there are 3 different types:
    • file : stream out to file.
    • zmq : publish output stream on a ZMQ socket.
    • embedding : creates and embedding database for further annotation by the user.
tip

The WebSocket endpoint is always enabled for all channels and does not need to be explicitly specified as a sink. The WebSocket is the recommended way to consume metadata from Nimble.