我一直使用此命令行创建一个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会将音频转换为项目的格式。
非常感谢您的帮助!
答案 0 :(得分:0)
在研究SoxSharp的源代码时,它甚至无法处理开箱即用的最基本的me脚命令。基本上,所有内容都必须放在“ CustomArguments”属性中。