I download an avi/video file with wget and want the VLC to play this file. Both actions are called from my C# code:
Code: Select all
var startWGet = new ProcessStartInfo(AppDomain.CurrentDomain.BaseDirectory + @"/data/start.bat")
{
WindowStyle = ProcessWindowStyle.Hidden,
CreateNoWindow = true
};
var startVLC = new ProcessStartInfo(vlc_path, "--quiet --qt-minimal-view /data/tmp.ts") { };
Process.Start(startWGet);
Process.Start(startVLC);
I read something about telling the vlc to do as described in the settings, but that's not what i need, since i program a tool.
Thanks in advance,
Lenn