Hi all,
I need to support registering a receive node for video which can support 720p and 1080p, 50fps and 60fps video, so how should my sdp file be defined?
code:
NvNmosReceiverConfig sourceConfig[2] = { 0 };
sourceConfig[0].sdp = strVRecSdpContent.c_str();
sourceConfig[1].sdp = strARecSdpContent.c_str();
nodeConfig.receivers = &sourceConfig[0];
nodeConfig.num_receivers = 2;
the contant of strVRecSdpContent is:
v=0
o=- 1735271365 1735271365 IN IP4 192.168.1.233
s=TVU 46BB/video
t=0 0
a=x-nvnmos-id:sourcev46BB
a=x-nvnmos-group-hint:rx46BB:video
a=recvonly
m=video 7000 RTP/AVP 96 97 98
c=IN IP4 224.1.1.3/64
a=source-filter: incl IN IP4 224.1.1.3 192.168.1.231
a=rtpmap:96 raw/90000
a=fmtp:96 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=60/1; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=rtpmap:97 raw/90000
a=fmtp:97 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=60000/1001; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=rtpmap:98 raw/90000
a=fmtp:98 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=30/1; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=mediaclk:direct=0
a=x-nvnmos-iface-ip:192.168.1.233
but it doesn't work, can you help to debug it or tell me the way to register it ? thanks!!
Hi all,
I need to support registering a receive node for video which can support 720p and 1080p, 50fps and 60fps video, so how should my sdp file be defined?
code:
NvNmosReceiverConfig sourceConfig[2] = { 0 };
sourceConfig[0].sdp = strVRecSdpContent.c_str();
sourceConfig[1].sdp = strARecSdpContent.c_str();
nodeConfig.receivers = &sourceConfig[0];
nodeConfig.num_receivers = 2;
the contant of strVRecSdpContent is:
v=0
o=- 1735271365 1735271365 IN IP4 192.168.1.233
s=TVU 46BB/video
t=0 0
a=x-nvnmos-id:sourcev46BB
a=x-nvnmos-group-hint:rx46BB:video
a=recvonly
m=video 7000 RTP/AVP 96 97 98
c=IN IP4 224.1.1.3/64
a=source-filter: incl IN IP4 224.1.1.3 192.168.1.231
a=rtpmap:96 raw/90000
a=fmtp:96 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=60/1; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=rtpmap:97 raw/90000
a=fmtp:97 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=60000/1001; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=rtpmap:98 raw/90000
a=fmtp:98 sampling=YCbCr-4:2:2; width=1920; height=1080; depth=10; exactframerate=30/1; TCS=SDR; colorimetry=BT.709; PM=2110GPM; SSN=ST2110-20:2017; TP=2110TPN
a=mediaclk:direct=0
a=x-nvnmos-iface-ip:192.168.1.233
but it doesn't work, can you help to debug it or tell me the way to register it ? thanks!!