I am using Visual C # 2008 and want to write an AVI file from bmp sequences.
I found AForge.Video.VWF, but it's just for the "vmw3" or "DIB" codecs, and I want to use AForge.Video.FFMPEG, but it got an error.
For example, I just code:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using AForge.Video.FFMPEG; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { VideoFileWriter vfw = new VideoFileWriter(); } } }
But I got this filenotfoundexception
{"The specified module could not be found. (Exception from HRESULT: 0x8007007E)":null}
cuong nguyen
source share