Alex
Hi Roman
var dlg = new Microsoft.Win32.OpenFileDialog();
dlg.ShowDialog();
string file = dlg.FileName;
mediaplayer1.Stop();
mediaplayer1.FilenamesOrURL.Clear();
mediaplayer1.FilenamesOrURL.Add(file);
mediaplayer1.Video_Renderer = VFVideoRendererWPF.WPF;
mediaplayer1.Source_Mode = VFMediaPlayerSource.File_FFMPEG;
mediaplayer1.Debug_Mode = true;
mediaplayer1.Video_Effects_Enabled = true;
mediaplayer1.Video_Effects_Deinterlace_CAVT(1, 0, 0, true, Convert.ToByte("20"));
mediaplayer1.Play();
mediaplayer1.Loop = true;
this is how i am using to open a video.
first i opened a mov file then i browsed and opened a wmv file this PIP mode playing
Thank you
on May 13, 2013 13:34