caching - WPF VLC PluginV2 Cache time delay -


i've hosted vlc player in wpf application, in order play rtsp stream (from ip camera). succeeded play rtsp stream ip camera. unfortunately vlc adding delay time (cache time in milliseconds) video he's adding default 1000ms (one second) delay. i'm trying find way decrease 300ms +- @ least. im trying wpf application cant find how there no examples @ google or this. using vlc activex plugin v2 here code:

vlc = new axvlcplugin2();  winformhost.child = vlc; vlc.createcontrol(); vlc.playlist.add("rtsp://192.168.2.2/h264?multicast", "first camera", "--network-caching=300"); vlc.playlist.play(); 

there way it? , guess options dont know how it. tried open @ command line:

vlc --network-caching=300 -vvv rtsp://192.168.2.2/h264?multicast 

that open right thing right cache time , in wpf not working. please if can me

try using ":network-caching=300" works me using javascript plugin. – mark gamache 20 secs ago


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -