Does anyone know how to find the second stream on the X-Spans Series?

cmx

Getting the hang of it
Nov 9, 2024
102
41
NJ
I have a X-Spans Series camera it has a PTZ and a 180 degree camera. Does anyone know how to find the URL of both streams for BI? I can only find one.

Thanks!
 
If Dahua sourced, URL should be:

rtsp:/<username>:<password>@<ip_address>:<rtsp_port>/cam/realmonitor?channel=<channel_number>&subtype=<stream_type>
where port = 554, channel = 1, subtype = 0 for main stream and 1 = for sub stream

Examples:

With authentication, main stream
rtsp:/:[email protected]:554/cam/realmonitor?channel=1&subtype=0

Without authentication, sub stream:
rtsp:/192.168.1.108:554/cam/realmonitor?channel=1&subtype=1

NOTES:
1) Be sure to place 2 "/" after "rtsp:" as forum won't allow 2 to be displayed consecutively
2) In Camera's webGUI, insure streams are enabled and configured as required.
 
Last edited:
  • Like
Reactions: cmx
If Dahua sourced, URL should be:

rtsp:/<username>:<password>@<ip_address>:<rtsp_port>/cam/realmonitor?channel=<channel_number>&subtype=<stream_type>
where port = 554, channel = 1, subtype = 0 for main stream and 1 = for sub stream

Examples:

With authentication, main stream
rtsp:/:[email protected]:554/cam/realmonitor?channel=1&subtype=0

Without authentication, sub stream:
rtsp:/192.168.1.108:554/cam/realmonitor?channel=1&subtype=1

NOTES:
1) Be sure to place 2 "/" after "rtsp:" as forum won't allow 2 to be displayed consecutively
2) In Camera's webGUI, insure streams are enabled and configured as required.

Thanks i will give that a try.