No Audio/Video in Web App Remote Log In.

nga_matt

n3wb
May 8, 2025
8
2
Georgia USA
Hello all,
I have a couple of Vikviz POE IP cameras that I have port forwarded to view from a remote network. Everything works great logging in on the same network.
When logging in from another network, I can log into the cameras and I can even control the pan and tilt. But there is no audio or video stream present.
I've turned the resolution of the cameras way down and toggled between h264 and h265 encoding thinking it might be a bandwidth issue. That made no difference.

Searching for the issue online brings possible connection or cabling errors as a result. Or even incorrect port forwarding. But as I mentioned I can control the camera just not view or hear the stream.

As always, any help would be appreciated.
 
Your post title states "No Audio/Video in Web App Remote Log In".....

If you scanned a provided QR code with your phone then a p2p client was likely installed to use their cloud and no port forwarding is required (or recommended).

If the app is not Hik-Connect I'd delete and try Hik-Connect.
 
Your post title states "No Audio/Video in Web App Remote Log In".....

If you scanned a provided QR code with your phone then a p2p client was likely installed to use their cloud and no port forwarding is required (or recommended).

If the app is not Hik-Connect I'd delete and try Hik-Connect.
I don't believe it is Hik-Connect. Though I will give that a try. And I'm not using an app on my phone. I am logging in to the camera's ip and port address on a PC. It presents a web gui.

Edited to add: I installed Hik-Connect on my phone. After entering the ip address and log in credentials the camera shows as off-line. It is definitely not off-line. When I click the play/eye icon it asks for a "Video and Picture Encryption Passowrd". I'm not using a DVR so can't get it from there. And can't disable it since the Image and Video Encryption isn't an option.
 
Last edited:
I don't believe it is Hik-Connect. Though I will give that a try. And I'm not using an app on my phone. I am logging in to the camera's ip and port address on a PC. It presents a web gui.
I'm kinda old school from the early 80's and when I hear "web app" I think a phone or tablet app, not a PC browser or program (application). :cool:

Then it's port 80 (HTTP) you're accessing if it opens the cam's embedded webGUI with a browser.

To stream video, you must specify the correct RTSP URL (likely Hikvision protocol) and the RTSP port (554) and it be sent to a qualified player such as VLC. If not on the LAN, port 554 would need to be forwarded (not recommended).
 
Last edited:
  • Like
Reactions: looney2ns
I'm kinda old school from the early 80's and when I hear "web app" I think a phone or tablet app, not a PC browser or program (application). :cool:

Then it's port 80 (HTTP) you're accessing if it opens the cam's embedded webGUI with a browser.

To stream video, you must specify the correct RTSP URL (likely Hikvision protocol) and the RTSP port (554) and it be sent to a qualified player such as VLC. If not on the LAN, port 554 would need to be forwarded (not recommended).
Thanks Tony.
I actually changed the http and rtsp ports in the camera. I have both of the new ports forwarded.
 
Thanks Tony.
I actually changed the http and rtsp ports in the camera. I have both of the new ports forwarded.
Try these with VLC, insure RTSP is enabled in the camera.

RTSP without Authentication
rtsp:/<IP address of device>:<RTSP port>/Streaming/channels/<channel number><stream number>
NOTE: <stream number> represents main stream (01), or the sub stream (02)

Example:
Code:
rtsp:/Camera-IP:RTSP-port/Streaming/channels/101 – get the main stream of the 1st channel

rtsp:/Camera-IP:RTSP-port/Streaming/channels/102 – get the sub stream of the 1st channel

RTSP with Authentication
rtsp:/<username>:<password>@<IP address of device>:<RTSP port>/Streaming/channels/<channel number><stream number>

Example:
Code:
rtsp:/username:password@Camera-IP:RTSP-port/Streaming/channels/101 – get the main stream of the 1st channel

rtsp:/username:password@Camera-IP:RTSP-port/Streaming/channels/102 – get the sub stream of the 1st channel

NOTE: Be sure to place 2 "/" after "RTSP:", as forum software won't allow 2 to be displayed consecutively.
 
Try these with VLC, insure RTSP is enabled in the camera.

RTSP without Authentication
rtsp:/<IP address of device>:<RTSP port>/Streaming/channels/<channel number><stream number>
NOTE: <stream number> represents main stream (01), or the sub stream (02)

Example:
Code:
rtsp:/Camera-IP:RTSP-port/Streaming/channels/101 – get the main stream of the 1st channel

rtsp:/Camera-IP:RTSP-port/Streaming/channels/102 – get the sub stream of the 1st channel

RTSP with Authentication
rtsp:/<username>:<password>@<IP address of device>:<RTSP port>/Streaming/channels/<channel number><stream number>

Example:
Code:
rtsp:/username:password@Camera-IP:RTSP-port/Streaming/channels/101 – get the main stream of the 1st channel

rtsp:/username:password@Camera-IP:RTSP-port/Streaming/channels/102 – get the sub stream of the 1st channel

NOTE: Be sure to place 2 "/" after "RTSP:", as forum software won't allow 2 to be displayed consecutively.
Thanks so much for the help with this. You helped show me my mistake. I had the rtsp stream folder wrong. I was using /h264_stream when it should have been just /h264.
 
  • Like
Reactions: looney2ns and TonyR
Thanks so much for the help with this. You helped show me my mistake. I had the rtsp stream folder wrong. I was using /h264_stream when it should have been just /h264.
That's understandable, as that one (/h264_stream) is shown on iSpy. :facepalm: