0
Answered

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 6

Hello,


I would like to add SIP video to my project.

such as below example project iridium.

Sip video IOS

Sip video windows


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?
thanks

Under review

Hello!


Make sure that you do the video-call and not audio-call.



thanks Dmitry