Chinese camera + 2 Lens - how to fetch only one len

lakime

n3wb
May 30, 2022
4
0
Poland
Hello

I got Chinese camera with two lens, probably it will tell you nothing but:
  • It's from DABEMO (?!?) shop on Ali
  • I do see it as XM530V200_X6-WEQ_8M (H264) (I think X6_WEQ would be key here)
  • Probably doesn't matter but Firmware: V5.00.R02.000807D8.10010.34ff24.S.ONVIF 21.06
I can access it via rtsp:/192.168.xx.xxx/user=admin_password=tlJwpbo6_channel=1_stream=1.sdp?real_stream (no it is not a password, it is blanked hashed nothing)

I do access it via ICSEE app, Home Assistant (both onvif or directly rtsp), directly via VLC (rtsp) - but I do always got two lens on one screen (splited)
how to fetch indpendently only one len ? I did tried several combination on rtsp (different channel, different stream) but no change

I also made nmap scan - but only this rtsp link shows - does anyone have any idea?
 
Hello

I got Chinese camera with two lens, probably it will tell you nothing but:
  • It's from DABEMO (?!?) shop on Ali
  • I do see it as XM530V200_X6-WEQ_8M (H264) (I think X6_WEQ would be key here)
  • Probably doesn't matter but Firmware: V5.00.R02.000807D8.10010.34ff24.S.ONVIF 21.06
I can access it via rtsp:/192.168.xx.xxx/user=admin_password=tlJwpbo6_channel=1_stream=1.sdp?real_stream (no it is not a password, it is blanked hashed nothing)

I do access it via ICSEE app, Home Assistant (both onvif or directly rtsp), directly via VLC (rtsp) - but I do always got two lens on one screen (splited)
how to fetch indpendently only one len ? I did tried several combination on rtsp (different channel, different stream) but no change

I also made nmap scan - but only this rtsp link shows - does anyone have any idea?
This Xiongmai sub brand dual lens cannot view individual channels via RTSP. Can only do so on thier Icsee ap.
 
This Xiongmai sub brand dual lens cannot view individual channels via RTSP. Can only do so on thier Icsee ap.

Are you maybe aware how this video is being streamed to the icsee ap ? if not rtsp maybe there is some different method I can fetch it ?
 
I am facing same issue. ICsee app it's trivial and works how it should.

Unfortunately, in any compatible VMS software (windows), we get 1x stream with split / squashed screens in a single window. If we could split the 2 streams and place each in 1 window (same as what Icsee does in android), we would have a MUCH better desktop view. It must be doable since ICsee can do it in their app
 
I have the same camera. I don't know if this help you, but I use ICSEE App on my Android and you can view each camera separately rotating the mobile horizontally and pressing twice the video for the fixed or PTZ camera.
 
I do this with ffplay (ffmpeg)

stream bottom camera:
ffplay -i rtsp:/user:pass@ip-of-camera -vf "crop=2303:1295:0:1296"

stream top camera:
ffplay -i rtsp:/user:pass@ip-of-camera -vf "crop=2303:1295:0:0"
 
Code:
ffplay -i rtsp:/user:pass@ip-of-camera -vf "crop=2303:1295:0:1296"
ffplay -i rtsp:/user:pass@ip-of-camera -vf "crop=2303:1295:0:0"