gpt4 book ai didi

c#和ffpmeg命令行问题

转载 作者:行者123 更新时间:2023-12-04 23:03:25 26 4
gpt4 key购买 nike

我有一个从 Windows 命令行调用 ffmpeg 的 php 代码(因为我在本地运行 apache):

//ffmpeg -i input.mp4 -r 20 output.gif
echo exec('C:\ffmpeg\bin\ffmpeg.exe -i videos/file.avi -r 10 -s 450x230 videos/file.gif');

它工作正常!现在我编写了一个 C# 程序,并尝试用以下方法做同样的事情:
 System.Diagnostics.Process.Start

但它失败了。

问题:如何从 PHP 代码执行相同的命令,但从 C# 代码内部执行?

最佳答案

Process process = Process.Start(
new ProcessStartInfo
{
FileName = @"C:\ffmpeg\bin\ffmpeg.exe",
Arguments = "-i videos/file.avi -r 10 -s 450x230 videos/file.gif",
WindowStyle = ProcessWindowStyle.Hidden
}
);
process.WaitForExit();

如果失败,将引发异常,例如
如果找不到可执行文件,则 System.ComponentModel.Win32Exception 和 HResult=-2147467259。

关于c#和ffpmeg命令行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35649320/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com