如何使用 sox 获取音频文件采样率?
我想使用 sox 获取给定音频文件的采样率。找不到执行此操作的命令行。
I would like to get the sample-rate of a given audio file using sox. Couldn't find the commandline to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用:
或
即可生成输出,例如:
后者是为了防止您使用默认情况下不包含 soxi 的 win32 版本。要仅获取采样率,只需使用:
或
它将单独返回采样率。
just use:
or
to produce output such as:
The latter one is in case you're using the win32 version that doesn't include soxi, by default. To grab the sample rate only, just use:
or
which will return the sample rate alone.