2

I am using JsSIP to make SIP calls. I am able to see Signalling messages like From, To, Via in the console.

enter image description here

In the same way, can we see RTP and RTCP packet transmission messages?

Cherry
  • 699
  • 1
  • 7
  • 20

2 Answers2

0

No. You can see the signalling part (SIP or JSEP), but not the media part in the console. RTP/RTCP are the media protocols.

Dr. Alex Gouaillard
  • 2,078
  • 14
  • 13
0

You can diagnose RTP headers and RTCP packets by using chrome's webrtc-internals dump files.

https://tokbox.com/blog/how-to-get-a-webrtc-diagnostic-recording-from-chrome-49/

https://github.com/fippo/dump-webrtc-event-log

Kenan Kocaerkek
  • 319
  • 3
  • 9