Skip to content

Instantly share code, notes, and snippets.

@jz5
Created June 10, 2015 21:26
Show Gist options
  • Save jz5/bf44e574f9764b8bc83f to your computer and use it in GitHub Desktop.
Save jz5/bf44e574f9764b8bc83f to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var writer = new AForge.Video.VFW.AVIWriter();
writer.Codec = "MSVC";
writer.FrameRate = 15;
writer.Open("out.avi", 800, 600); // 800x600
writer.AddFrame(new System.Drawing.Bitmap(800, 600));
writer.Close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment