Nice work gabe
I have used this in a vb application and it works very nice
however compression dosnt seem to work ?
My File size is Huge
Let us know the score
Regards
Carl Blanchard
PS VB for kid
Dim aviObj As New AviLib.AviWriter("output.avi", AviLib.AviCompression.None, Convert.ToUInt32(24), 1280, 1024)
Dim bitmaps As String() = Directory.GetFiles(System.Environment.CurrentDirectory & "\temp\", "*.jpg")
Dim bitmap As String
For Each bitmap In bitmaps
Console.WriteLine(bitmap)
aviObj.WriteFrame(New Bitmap(bitmap))
Next bitmap
aviObj.Close()
GC.Collect()