gpt4 book ai didi

audio - 从SoxSharp内部使用la脚

转载 作者:行者123 更新时间:2023-12-02 23:31:44 26 4
gpt4 key购买 nike

我一直使用此命令行来创建mp3,其比特率:32kBit / s和采样率:22050 Hz:

"lame -b 32 --resample 22050 input.wav output.mp3"

现在,我想为此使用 SoxSharp,它具有mp3选项并使用libmp3lame.dll,因此我认为它应该可以工作。

但是,我无法确定正确的参数。

mp3输出的可用参数如下所示。
    Using nSox As Sox = New Sox("d:\dev\projects\sox-14-4-0\sox.exe")

nSox.Output.Type = FileType.MP3
nSox.Output.SampleRate = I guess that would be 22050 in my case?
nSox.Output.Channels = 1 'yep, I want mono
nSox.Output.Encoding = // not sure what to make of it
nSox.Output.SampleSize = // not sure what to make of it
nSox.Output.ByteOrder = // I guess I shouldn't touch that
nSox.Output.ReverseBits = // I guess I shouldn't touch that
nSox.Output.Compression = // absolutely not sure what I should choose here

nSox.Process("input.wav", "output.mp3")

End Using

有人看到我应该在哪里插入“32”吗?在我的情况下.SampleRate = 22050是否正确?如果我正确地执行Windows文件属性对话框,则不会给我任何真正的提示,Audacity会将音频转换为项目的格式。

非常感谢你的帮助!

最佳答案

在研究SoxSharp的源代码时,它甚至无法处理开箱即用的最基本的me脚命令。基本上,所有内容都必须放在“CustomArguments”属性中。

关于audio - 从SoxSharp内部使用la脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52046247/

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