您可以在Linux ALSA系统中记录麦克风输入吗?
我想通过ruby进行一些处理和编码。但我找不到任何相关的文章。
谢谢你们!
答案 0 :(得分:3)
快速搜索会调出ruby-alsa
project:
# From the ruby-alsa homepage:
Capture.open do |capture|
capture.read do |buffer, frame_count|
$stdout.write buffer
end
end