Start VLC and play webcam stream in C# -


i trying start vlc media player (without including it) , play webcam stream delay of 3 seconds.

        process p = new process();         p.startinfo.filename = @"c:\program files (x86)\videolan\vlc\vlc.exe";         p.startinfo.arguments = ":dshow-vdev=uv-3013xc_4102889504 :dshow-adev=  :live-caching=3000";         p.start(); 

with that, starts vlc player without errors occuring. wont start playing webstream. ideas how solve this?

okay, found solution. 1 argument missing:

        process p = new process();         p.startinfo.filename = @"c:\program files (x86)\videolan\vlc\vlc.exe";         p.startinfo.arguments = "dshow:// :dshow-vdev=uv-3013xc_4102889504 :dshow-adev=  :live-caching=3000";//dateiname         p.start();//prozess starten 

Comments

Popular posts from this blog

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -