6

最近,我在互联网上搜索了很多用于从 MP4 视频中提取位图的好 C# 库,我发现了与此代码类似的东西,但与 MP4 不同:

        VideoStream stream = aviManager.GetVideoStream(@"C:\Users\User\Desktop\video.mp4");
        //the video.mp4 is usually .avi or .mpeg
        for (int n = 0; n < stream.CountFrames; n++)
        {
            Bitmap bmp = new Bitmap(stream.GetBitmap(Position));
            bmp.Save(@"C:\Users\Nehoray\Desktop\Something.png");
            bmp.Dispose;
        }

谁能给我一个像这样简单代码的库,只用于 MP4?:)

4

3 回答 3

3

我已将 Expression Encoder SDK 用于类似的任务。他们声明支持 MP4。看一下AudioVideoFile.GetThumbnail方法。

于 2012-10-08T20:47:16.083 回答
1

对于avi,我曾经写过这样的东西:

string filename = "file.avi";
string storagepath = @"temp\";
static int counter = 0;
MediaDetClass memde;

private void button1_Click(object sender, EventArgs e)
{
    if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {
        // Create the subfolder
        System.IO.Directory.CreateDirectory("temp");

    // Some properities
        counter = 0;
        memde = new MediaDetClass();
        Image img;
        memde.Filename = openFileDialog1.FileName;
        memde.CurrentStream = 0;
        int len = (int)memde.StreamLength;
        float percent = 0.002f;//how far do u want for a single step

        for (float i = 0.0f; i < len; i = i + (float)(percent * len))
        {

            counter++;
            string fbitname = storagepath + counter.ToString();
            memde.WriteBitmapBits(i, 850, 480, fbitname + ".bmp");
            //img = Image.FromFile(fbitname + ".bmp");
            //img.Save(fbitname + ".bmp", ImageFormat.Bmp);
            //img.Dispose();
            //System.IO.File.Delete(i + fbitname + ".bmp");
        }
}

使用的库是:Interop.DexterLib.dll,我现在不确定您是否可以在 C# 资源中找到它。如果你愿意,我可以分享链接。


GitHub Repo只需下载 RAW 文件(在 C# 文件夹中)。

于 2012-10-07T20:35:22.697 回答
0

对于在这篇文章中运行的其他任何人,请查看此答案:Get thumbnail image of video file in C#

其中一篇文章提到了一个名为NReco.VideoConverter的 NuGet 包。这使您可以很容易地从 MP4 文件创建缩略图:

var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
ffMpeg.GetVideoThumbnail(pathToVideoFile, pathToNewThumbnail, locationInSeconds);
于 2015-03-23T15:17:42.483 回答