Transmitting Audio and Viseo on the same port ?
Hello All,
I am working on a video conference project and I am now able to transmit the video and audio but each one wih a new SendStream
I.e.
SenStream ss1, ss2;
initialization for port 5000;
ss1 = rtpSM.createSendStream(datasource, 0);
ss1.start();
initialization for port 5002;
ss2 = rtpSM.createSendStream(datasource, 1);
ss2.start();
I want to transmit both audio and video on the same Send stream in order not to waste ports.
Any help will be appreciated.
Thanks,

