Some RTSP Stream fails

Max

Administrator
Staff member
Hello!

Unfortunately, WCS does not support H.265 codec which is used by your camera.
Please configure the camera to use H.264 or VP8 instead if possible, or use another camera which supports these video codecs.

List of supported codecs can be found here
 

a1p4ca

New Member
I have three more RTSP streams with same type of camera. When I checked, it seems that they also use H.265, but it works like a charm. I want you to check those streams.

[replaced]
[replaced]
[replaced]

And below is my Flashphoner server (demo login available).
[replaced]
 
Last edited:

Max

Administrator
Staff member
All the cameras listed above shows H.264 in their SDPs:
- cameras 1 and 3 have the same SDP
Code:
v=0
o=- 38990265062388 38990265062388 IN IP4 kmsb20200331.iptime.org
s=RTSP Session
c=IN IP4 kmsb20200331.iptime.org
t=0 0
a=control:*
a=range:npt=0-
m=video 0 RTP/AVP 96
a=rtpmap:96 H264/90000 
a=range:npt=0-
a=framerate:0S
a=fmtp:96 profile-level-id=42001e; packetization-mode=1; sprop-parameter-sets=Z0IAHpWoLASaEAAAAwAQAAADAyhA,aM48gA==
a=framerate:25
a=control:trackID=3
- camera 2
Code:
v=0
o=- 38990265062388 38990265062388 IN IP4 kmsb20200831.iptime.org
s=RTSP Session
c=IN IP4 kmsb20200831.iptime.org
t=0 0
a=control:*
a=range:npt=0-
m=video 0 RTP/AVP 96
a=rtpmap:96 H264/90000 
a=range:npt=0-
a=framerate:0S
a=fmtp:96 profile-level-id=42001e; packetization-mode=1; sprop-parameter-sets=Z0IAHpY1QZBzTcBAQFAAAAMAEAAAAwKIQA==,aM4xsg==
a=framerate:25
a=control:trackID=3
m=audio 0 RTP/AVP 8
a=control:trackID=4
Compare this with the camera from the first post:
Code:
v=0
o=- 38990265062388 38990265062388 IN IP4 kmsb20200825.iptime.org
s=RTSP Session
c=IN IP4 kmsb20200825.iptime.org
t=0 0
a=control:*
a=range:npt=0-
m=video 0 RTP/AVP 98
a=rtpmap:98 H265/90000 
a=range:npt=0-
a=framerate:0S
a=fmtp:98 profile-id=010101;sprop-pps=RAHA8rA7JA==;sprop-sps=QgEBAWAAAAMAsAAAAwAAAwBaoAZCAcFja7ky/NwEBAQQAAADABAAAAMBShA=;sprop-vps=QAEMAf//AWAAAAMAsAAAAwAAAwBarAwAAAMABAAAAwBSqA==;sprop-sei=TgHlBJSUAACA;
a=framerate:25
a=control:trackID=3
m=audio 0 RTP/AVP 8
a=control:trackID=4
it shows H.265
 

a1p4ca

New Member
Thank you. I tested another camera, and I checked it is H264.
[replaced]
Code:
v=0
o=- 1001 1 IN IP4 172.16.40.23
s=VCP IPC Realtime stream
m=video 0 RTP/AVP 105
c=IN IP4 172.16.40.23
a=control:[replaced]
a=rtpmap:105 H264/90000
a=fmtp:105 [replaced]
m=application 0 RTP/AVP 107
c=IN IP4 [replaced]
a=control:[replaced]
a=rtpmap:107 vnd.onvif.metadata/90000
a=fmtp:107 DecoderTag=h3c-v3 RTCP=0
a=recvonly
But It failed to connect. Can you give me some advice? Thank you so much for your help.
 
Last edited:

Max

Administrator
Staff member
You should escape any special character in RTSP URI replacing it by code:
Code:
rtsp://admin:kakao13579%40@km20201015.iptime.org:555/media/video3
In this case, @ character in password kakao13579@ must be replaced by its code %40
1604906188587.png

Please see also here
 
Top