Ruby可以在Linux ALSA系统中录制PCM麦克风输入吗?

发布于 2024-11-25 12:50:38 字数 98 浏览 1 评论 0原文

您好,Ruby 可以在 Linux ALSA 系统中录制麦克风输入吗?

我想用 ruby​​ 进行一些处理和编码。但我找不到任何相关文章。

谢谢你们!

Hi can ruby record microphone input in Linux ALSA system?

I would like to do some processing and encoding by ruby. But I couldn't find any related articles.

thanks guys!

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

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

发布评论

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

评论(1

贱人配狗天长地久 2024-12-02 12:50:38

快速搜索即可找到 ruby-alsa 项目

# From the ruby-alsa homepage:
Capture.open do |capture|
  capture.read do |buffer, frame_count|
    $stdout.write buffer
  end               
end

A quick search turns up the ruby-alsa project:

# From the ruby-alsa homepage:
Capture.open do |capture|
  capture.read do |buffer, frame_count|
    $stdout.write buffer
  end               
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文