AForge.Video.FFMPEG usado em c #

Eu uso o Visual C # 2008 e quero gravar o arquivo AVI de seqüências bmp.

Eu encontrei o AForge.Video.VWF, mas ele é apenas para codecs "vmw3" ou "DIB" e eu quero usar o AForge.Video.FFMPEG, mas ele recebeu um erro.

Por exemplo, apenas codifico:

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();
        }
    }
}

Mas eu peguei issofilenotfoundexception

{"The specified module could not be found. (Exception from HRESULT: 0x8007007E)":null}

questionAnswers(3)

yourAnswerToTheQuestion