Say
12th October 2005, 23:06
I can open a .avi file using this:
string file_path = @"c:\myfile.avi";
string sComand = "open \"" + file_path + "\" type mpegvideo alias...";
mciSendString(sComand, null, 0, IntPtr.Zero);
OK it works fine, but i need to open a file from memory stream (System.IO.Stream, otherwise byte[] ) instead to load a file from the HardDisk.
How???
string file_path = @"c:\myfile.avi";
string sComand = "open \"" + file_path + "\" type mpegvideo alias...";
mciSendString(sComand, null, 0, IntPtr.Zero);
OK it works fine, but i need to open a file from memory stream (System.IO.Stream, otherwise byte[] ) instead to load a file from the HardDisk.
How???