i need to get data from more than one network, so i need to use fdifferent zmq port addresses.
Documentation says put into gstreamer pipeline following :
hailoexportzmq address=“tcp://*:5556” . But runtime then returns error zmq::error_t: Protocol not supported. Please suggest correct syntax for changing output port for the hailoexportzmq element.
To configure a custom output port for the hailoexportzmq GStreamer element, use this syntax:
hailoexportzmq address="tcp://0.0.0.0:5556"
This configuration does two important things:
The address parameter defines where the ZeroMQ socket will bind
Using tcp://0.0.0.0:5556 makes the socket accessible from all network interfaces, providing better reliability than the alternative syntax tcp://*:5556
If you need more info about this please check out pages 134-135 in the TAPPAS user guide .