将 URL 传递给从 WAV 文件中提取样本的特定示例代码

发布于 2024-10-16 08:37:16 字数 297 浏览 2 评论 0原文

我不知道 SOF 访问这样一个具体问题是否合法,但我在这里:

我发现了这个精彩的 一段代码,它从 WAV 文件中获取所有样本并将其传递到一个数组中。

代码可以编译,但我似乎无法弄清楚在哪里传递文件位置及其名称的参数。

有什么帮助吗?

PS 如果这段代码按照它所说的那样做,我认为它对很多人来说都是有用的。

谢谢!

I don't know if it is legal on SOF to access such a specific question, but here I go:

I've found this wonderful piece of code which takes all the samples from a WAV file and passes it into an array.

The code compiles, but I can't seem to figure out where to pass the argument of where the file is and what its name is.

Any help?

PS If this code does what it says it does, I think it could be useful to a lot of people.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别闹i 2024-10-23 08:37:16

如果你看一下它从 stdin 读取的代码(甚至在代码上面的描述中说:“它从 stdin 读取”)。显然,它被设计用作命令行工具(或“过滤器”),可以与其他工具一起通过管道传输,或者使用 I/O 重定向独立使用。

If you look at the code it's reading from stdin (and it even says in the description above the code: "It reads from stdin"). Evidently it's designed to be used as a command line tool (or "filter") which can be piped with other tools, or standalone using I/O redirection.

再浓的妆也掩不了殇 2024-10-23 08:37:16

您应该能够通过 wget 或 curl 进行管道输出。

wget -O - http://www.whatever.com/somefile.wav |你的代码

You should be able to pipe output from wget or curl.

wget -O - http://www.whatever.com/somefile.wav | yourpieceofcode

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文