Linux/Windows autostart RTSP Viewer

Joined
Aug 25, 2015
Messages
13
Reaction score
0
I am in search of an autostart ip cam viewer that can do rtsp/onvif on startup.

Can anyone recommend anything on either Linux or windows?

I have a computer that needs to show 1 feed and 1 feed only and it needs to be AutoStart on powerup..
 

TonyR

IPCT Contributor
Joined
Jul 15, 2014
Messages
16,711
Reaction score
38,899
Location
Alabama
I am in search of an autostart ip cam viewer that can do rtsp/onvif on startup.

Can anyone recommend anything on either Linux or windows?

I have a computer that needs to show 1 feed and 1 feed only and it needs to be AutoStart on powerup..
VLC (Windows and GNU/Linux) can start up via command line or via batch (.bat) file.

I can run this as a.bat file and it streams an Amcrest (Dahua-OEM) cam with VLC, your path and URL may vary:
Code:
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" "rtsp:/username:password@Camera-IP:554/cam/realmonitor?
channel=1&subtype=0" --fullscreen --no-video-title-show
Of course, insure to place 2 "/" after "rtsp:", as forum software won't allow me to post 2 consecutively here. :idk:
 
Last edited:
Top