public class VideoProperties
{
public int Width { get; set; }
public int Height { get; set; }
public long Duration { get; set; }
public VideoProperties(string fileName)
{
WindowsMediaPlayerClass wmp = new WindowsMediaPlayerClass();
IWMPMedia mediaInfo = wmp.newMedia(fileName);
wmp.currentMedia = mediaInfo;
Thread.Sleep(1000);
Width = mediaInfo.imageSourceWidth;
Height = mediaInfo.imageSourceHeight;
wmp.stop();
Duration = (long)mediaInfo.duration;
wmp.close();
}
}
Read more: שלמה גולדברג (הרב דוטנט)