Hi
i write a c# application to render a video saved on Ftp folder. The control show about one minute of video and than video blocking and audio go on. I set some optiontion playlist but these didn't work..
the code is the following:
// These are all option that i have proove
string[] options =new string[] {
//"--plugins-cache",
//"--no-plugins-cache",
//"--no-start-paused "
//":ftp-caching=600 "
//":network-caching=10000",
":network - caching = 60000",
":file - caching = 60000",
":network - timeout = 10000000"
// "--ftp - account ="
//"--no-one-instance",
//"--no-loop",
//"--no-drop-later-frames",
//"--disable-screensaver"
};
this.axVLCPlugin21.playlist.add("ftp://User:Password@Ip:Port/FtpFolder/GlassesVideo.mp4", options);
//this.axVLCPlugin21.playlist.playItem(0);
this.axVLCPlugin21.playlist.play();
///this.Test();
Have you any idea Why?
Valentina Tavanti