Im using a HIKVISION DVR and a samsung J5 Android 5.
The problem i have is to see two cams at same time.
Someone can tell me how load two videoviews at same time?
Im using two panels with a videoview each one, first loads ok, but when i try load second vv the first "stop" and in second vv i see both cams at same time.
Thanks
This code is which i use to load one and other:
If view=1 Then
vv.Initialize("vv")
myPanel.AddView(vv, 0dip, 0dip, 100%x,100%y)
vv.LoadVideo("http","rtsp://user:[email protected]-remote.com:554/h264/ch" & Chn & "/main/av_stream")
vv.MediaControllerEnabled=True
Else if view=2 Then
vv2.Initialize("vv2")
myPanel2.AddView(vv2, 0dip, 0dip, 100%x,100%y)
vv2.LoadVideo("http","rtsp://user:[email protected]-remote.com:554/h264/ch" & Chn & "/main/av_stream")
vv2.MediaControllerEnabled=True
End If
The problem i have is to see two cams at same time.
Someone can tell me how load two videoviews at same time?
Im using two panels with a videoview each one, first loads ok, but when i try load second vv the first "stop" and in second vv i see both cams at same time.
Thanks
This code is which i use to load one and other:
If view=1 Then
vv.Initialize("vv")
myPanel.AddView(vv, 0dip, 0dip, 100%x,100%y)
vv.LoadVideo("http","rtsp://user:[email protected]-remote.com:554/h264/ch" & Chn & "/main/av_stream")
vv.MediaControllerEnabled=True
Else if view=2 Then
vv2.Initialize("vv2")
myPanel2.AddView(vv2, 0dip, 0dip, 100%x,100%y)
vv2.LoadVideo("http","rtsp://user:[email protected]-remote.com:554/h264/ch" & Chn & "/main/av_stream")
vv2.MediaControllerEnabled=True
End If