我使用 Visual C# 2008 并想从 bmp 序列写入 AVI 文件。
我找到了 AForge.Video.VWF 但它仅适用于“vmw3”或“DIB”编解码器,我想使用 AForge.Video.FFMPEG 但它出错了。
例如我只是编码:
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();
}
}
}
但我得到了这个filenotfoundexception
{"The specified module could not be found. (Exception from HRESULT: 0x8007007E)":null}