gpt4 book ai didi

c# - 如何使用文本框更改 nreco 函数的比特率?

转载 作者:太空宇宙 更新时间:2023-11-03 11:58:39 30 4
gpt4 key购买 nike

我正在尝试使用 Nreco.VideoConverter 在 C# 中编写一个转换器。我以前从未有过这些经验。我开始研究这个领域是因为我在工作中被问到。我的问题是;我可以更改视频转换器中的比特率值。如果您有组合框或特定值。但是,如果从文本框中输入任何值,我无法相应地调整代码。下面是我使用的代码。请帮忙。

代码是;

  if (comboBox2.Text == "_1000kbit")
{
if (comboBox1.Text == "mp4" || comboBox1.Text == "mp4 1280 x 720 16 : 9" || comboBox1.Text ==
"mp4 640 x 350 16 : 9" || comboBox1.Text == "mp4 720 x 540")
{
var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
ffmpeg.ConvertMedia(VideoPath, null, MusicPath, null, new ConvertSettings()
{
CustomOutputArgs = "-b:v 1000k -bufsize 1000k"
});
}

}

但我想这样做;

 if (comboBox2.Text == "_1000kbit")
{
if (comboBox1.Text == "mp4" || comboBox1.Text == "mp4 1280 x 720 16 : 9" ||
comboBox1.Text == "mp4 640 x 350 16 : 9" || comboBox1.Text == "mp4 720 x 540")
{
var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
ffmpeg.ConvertMedia(VideoPath, null, MusicPath, null, new ConvertSettings()
{
CustomOutputArgs = "-b:v"+textBox1.Text+"k -bufsize"+textBox1.Text+"k"
});
}

}

那有可能吗?如果可能我该怎么做?因为当我输入它时,它说 ffmpeg 找不到参数。顺便说一下,我将 textbox 值设置为 int。请为此提供帮助。谢谢。

我尝试过的:

我想这样做;但这是可能的还是真的我不知道

最佳答案

试试这个

 CustomOutputArgs = String.Format("-b:v {0}k -bufsize {0}k", textBox1.Text);

编辑:解释代码中的问题你的 CustomOutputArgs 结果是:-b:v1000k -bufsize1000k而不是 -b:v 1000k -bufsize 1000k(注意空格)

关于c# - 如何使用文本框更改 nreco 函数的比特率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58181448/

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