我有100个jpeg。
我使用ffmpeg编码为写入硬盘的视频文件。
有没有办法将它直接传递给字节/流?
我正在使用C#,我正在使用进程类来启动ffmpeg。
由于
答案 0 :(得分:4)
using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;
namespace PipeFfmpeg
{
class Program
{
public static void Video(int bitrate, int fps, string outputfilename)
{
Process proc = new Process();
proc.StartInfo.FileName = @"ffmpeg.exe";
proc.StartInfo.Arguments = String.Format("-f image2pipe -i pipe:.bmp -maxrate {0}k -r {1} -an -y {2}",
bitrate, fps, outputfilename);
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardInput = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.Start();
for (int i = 0; i < 500; i++)
{
using (var ms = new MemoryStream())
{
using (var img = Image.FromFile(@"lena.png"))
{
img.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);
ms.WriteTo(proc.StandardInput.BaseStream);
}
}
}
}
static void Main(string[] args)
{
Video(5000, 10, "lena.mp4");
}
}
}
答案 1 :(得分:2)
您应该直接从代码中访问ffmpeg库,而不是运行ffmpeg进程。例如,请查看AForge.Net。除此之外,它还有一个ffmpeg托管包装器。您在AForge.Video.FFMPEG.VideoFileWriter
类中感兴趣,它正是这样 - 使用指定的编码器将图像写入视频文件流。有关详细信息,请参阅在线文档。
答案 2 :(得分:2)
几周前,当我在寻找问题的答案时,我已经找到了这篇文章。 我试图启动ffmpeg进程并将参数传递给它,但是完成所有操作都花了很长时间。此时,我使用Xabe.FFmpeg,因为它是开箱即用的,不必担心ffmpeg可执行文件,因为它具有下载最新版本的功能。
bool conversionResult = await new Conversion().SetInput(Resources.MkvWithAudio)
.AddParameter(String.Format("-f image2pipe -i pipe:.bmp -maxrate {0}k -r {1} -an -y {2}",bitrate, fps, outputfilename))
.Start();
答案 3 :(得分:1)
万一有人想知道。在参数末尾添加“ - ”会将流重定向到标准输出,如果您订阅了流程类的OutputDataReceived事件,则可以捕获该输出。