Created
June 10, 2015 21:15
-
-
Save jz5/4c75a76bb0677548301a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub Main() | |
Dim 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() | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment