Multicast in ZED LiveLink in Unreal Engine

Hi ,
I am trying to send the LiveLink data to two different machines. Can you please guide me on how to archive this in ZEDLiveLinkConfig.Json file

{
“StreamingParameters”:
{
“connection_type”: “MULTICAST”,
“ip”: “192.168.1.76”,
“port”: 2000,
“send_bodies”: false,
“send_camera_pose”: true
},
“InitParameters”:
{
“input”: “USB_ID”,
“input_path”: 0,
“resolution”: “HD1080”,
“fps”: 30,
“depth_mode”: “NEURAL”,
“grab_compute_capping_fps”: 0
},
“PositionalTrackingParameters”:
{
“set_as_static”: false,
“set_floor_as_origin”: true,
“enable_pose_smoothing” : true,
“enable_area_memory”: false
},
“BodyTrackingParameters”:
{
“detection_model”: “HUMAN_BODY_ACCURATE”,
“body_format”: “BODY_38”,
“confidence”: 50,
“max_range”: -1,
“minimum_keypoints_threshold” : -1,
“skeleton_smoothing”: 0.2
}
}

Hi,

You need to change the ip address for a multicast one, for example : “230.0.0.1”, which is the default IP in the sample, I believe.

can you Please send me the Example structure for this

replace “ip”: “192.168.1.76”, with “ip”: “230.0.0.1”,