Hi... i m studying....... now i have mini project. i select project title is Desktop recorder(windows application) develop in C#....... i dont have idea about how to create video converter if any body have code or idea means ple help me... rly me or mail me coolsowguyz@gmail.com
Why u say u need converting ? If it is supposed to record desktop activites you should just use code for screen capturing what is preatty easy using .net and combine those images into AVI file. sample code for screen capturing: // Hide the form so that it does not appear in the screenshot this.Hide(); // Set the bitmap object to the size of the screen bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb); // Create a graphics object from the bitmap gfxScreenshot = Graphics.FromImage(bmpScreenshot); // Take the screenshot from the upper left corner to the right bottom corner gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy); // Save the screenshot to the specified path that the user has chosen bmpScreenshot.Save(saveScreenshot.FileName, ImageFormat.Png); // Show the form again this.Show(); Code (markup): And for creating AVI file of this you can use great AviFile Library that you will find described on codeproject.
thanks for ur information......... then anybody know video converter (c#.net code) coding website..... ple tel me.