0
Answered

Help! Sip Video Iridium v3 IOS to SIP Video Iridium v3 Windows

Ruud 7 years ago in iRidium Script updated by Dmitry - support (expert) 7 years ago 1

Hello,

I would like to add SIP video to my project.

such as below example project iridium.

SIP_Intercom_Video_iPad.irpz

SIP_Intercom_Video_Win.irpz


The methods I use in my project as Iridium project above

IR.AddListener(IR.EVENT_START,0,function()
{
IR.GetItem("Talking + Video").GetItem("my_camera").GetState(0).Image = "ir_camera://";
IR.GetItem("Outgoing + Video").GetItem("my_camera").GetState(0).Image = "ir_camera://";

IR.GetItem("Outgoing + Video").GetItem("Incoming_stream").GetState(0).Image = "sip_image://";
IR.GetItem("Talking + Video").GetItem("Incoming_stream").GetState(0).Image = "sip_image://";
})
function CameraStart()
{
IR.Camera(IR.CAMERA_RECORD, IR.CAMERA_FRONT, IR.CAMERA_RESOLUTION_MEDIUM);
IR.Camera(IR.CAMERA_FLIP_VERTICAL, 1);
}
I do see both ir_camera: //. but I do not see the sip_image: //. on iOS or Windows, as in the above projects. I guess I do not see a piece of script? or is there still a link underwater in SIP? How can I get this working in my project?

Image 15926

thanks