gpt4 book ai didi

c# - 处理 DataReceivedEventArgs 事件未触发

转载 作者:行者123 更新时间:2023-12-04 23:19:15 24 4
gpt4 key购买 nike

我正在使用 ffmpeg 在视频中添加水印。我正在尝试在控制台上写日志,但我不知道为什么我的 MyEvent事件没有调用。

public void ConvertVideo(string path)
{
string command = string.Format("-i {0} -i logo.png -filter_complex "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -codec:a copy output.mp4", Path);
ProcessStartInfo oInfo = new ProcessStartInfo(@"C:\ffmpeg\ffmpeg.exe", command)
{
CreateNoWindow = true,
RedirectStandardError = true,
RedirectStandardOutput = true,
WindowStyle = ProcessWindowStyle.Hidden,
UseShellExecute = false,
RedirectStandardInput = true
};

Process p = new Process();

void MyEvent(object s, DataReceivedEventArgs e)
{
Console.Writeline(e.Data);
}

try
{
p.OutputDataReceived += MyEvent;
p.StartInfo = oInfo;
p.Start();
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit(10000000);

}
catch (Exception ex)
{
Console.Writeline(ex);
}
finally
{
if (p != null)
{
p.Close();
}
}
}

最佳答案

首先创建一个新的 Process 对象并添加 OutputDataReceived事件。看起来一切都很好,但是您通过调用 Process.Start(oInfo) 覆盖了该 Process 对象。这意味着您为 OutputDataReceived 创建的订阅事件被覆盖。
而不是做p = Process.Start(oInfo)你可能只是做p.Start(oInfo)p.StartInfo = oInfo;然后 p.Start(); .这样,当进程启动时,MyEvent 订阅仍然存在,并且应该正确路由输出。

关于c# - 处理 DataReceivedEventArgs 事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70185588/

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