7

我一直在寻找使用 C# 代码从图像创建视频(.avi 文件)的时间,

有没有维护视频创建的库?我一直在查看 AviFileWriter 库,但该库似乎太固定了,因为我需要添加一些过渡和其他元素。

那么如何使用 C# 来满足我的需求呢?我不在乎编码是否复杂。

4

1 回答 1

6

这里是具有主要 AVI 功能的 ac# 项目 http://www.codeproject.com/Articles/7388/A-Simple-C-Wrapper-for-the-AviFile-Library

这里使用 VideoStream 从 bmp 文件创建视频制作帧

 //load the first image
Bitmap bitmap = (Bitmap)Image.FromFile(txtFileNames.Lines[0]);
//create a new AVI file
AviManager aviManager = 
    new AviManager(@"..\..\testdata\new.avi", false);
//add a new video stream and one frame to the new file
VideoStream aviStream = 
    aviManager.AddVideoStream(true, 2, bitmap);

Bitmap bitmap;
int count = 0;
for(int n=1; n<txtFileNames.Lines.Length; n++){
    if(txtFileNames.Lines[n].Trim().Length > 0){
        bitmap = 
           (Bitmap)Bitmap.FromFile(txtFileNames.Lines[n]);
        aviStream.AddFrame(bitmap);
        bitmap.Dispose();
        count++;
    }
}
aviManager.Close();
于 2012-08-19T08:42:20.570 回答