v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 127.0.0.1
t=0 0
a=tool:libavformat 56.15.102
m=video 64592 RTP/AVP 96
b=AS:1000
a=rtpmap:96 VP8/90000
Does anyone have an SDP they have used with Janus to decode RTP forwarded data? Any suggestions on what is required in the SDP would be greatly appreciated.
Many thanks
v=0
o=- 0 0 IN IP4 127.0.0.1
s=RTP Video
c=IN IP4 127.0.0.1
t=0 0
m=video 10001 TCP 100
a=rtpmap:100 VP8/90000
a=fmtp:100 packetization-mode=1I've underlined are the only parts I think need to be set dynamically based on what the browser sends and the assigned rtp_forward port (correct me if I'm wrong).
However, I've set the transport to TCP which is believe is correct based on this spec but I can see that it is still using UDP with this command:
sudo watch -n 0.1 "netstat -tulpn | grep janus"Is there any way to get the RTP Forwarding to use TCP rather then UDP? If a TCP candidate was negotiated in the browser, would the RTP Forwarding also use TCP?
We are streaming very short videos and it is essential that there is no packet loss (it doesn't matter if the data is not transmitted in real-time).
Thanks again for you help.
No, only udp is supported.
L.
--
You received this message because you are subscribed to the Google Groups "meetecho-janus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meetecho-janu...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
How hard do you think it would be to add TCP support to the rtp forward feature? If you were to get a pull request adding this functionality, is it likey to be accepted?