6

我通过从我的 c# 代码中启动 ffmpeg 进程来提取单个视频帧。默认行为是将这些图像写入磁盘。但是,为了加快处理速度,我想重定向 ffmpeg 标准输出以接收流并在我的程序中进一步处理它。

我正在使用与此类似的参数:

-i \"" + Filename + "\" -vf \"scale=640:-1\" -an -vframes 100 -r 1 -f image2 -

这会将字节流重定向到标准输出,我可以使用process.StartInfo.RedirectStandardOutput = true.

这可能适用于电影流,因为我只有一个输出,但上面的调用会产生 10 个单个图像(写入硬盘时),我如何从标准输出解析字节流并将其拆分为单个文件?

4

2 回答 2

4

我找到了一个似乎可行的解决方案,但奇怪的是,ffmpeg 文档中没有提到:image2pipe用作输出格式。

因此,对于上面的示例,它将是:

-i \"" + Filename + "\" -vf \"scale=640:-1\" -an -vframes 100 -r 1 -f image2pipe -

这会将字节流重定向到标准输出并允许捕获和解析图像

于 2012-05-09T20:51:26.247 回答
0

感谢您的回答@leepfrog 这基本上是一样的:

StringBuilder str = new StringBuilder();

        //Input file path
        str.Append(string.Format(" -i {0}", myinputFile));

        //Set the frame rate
        str.Append(string.Format(" -r {0}", myframeRate);

        //Indicate the output format
        str.Append(" -f image2pipe");

        //Connect the output to the standard output
        str.Append(" pipe:1");



        return str.ToString();
于 2012-07-31T13:09:40.863 回答