1 个不稳定版本
使用旧的 Rust 2015
0.1.1 | 2017年3月6日 |
---|
#862 in 音频
845 每月下载量
在 10 个 Crates 中使用 (via portaudio-rs)
11KB
209 行
portaudio-rs
为 Rust 提供的 PortAudio 绑定
示例
extern crate portaudio_rs as portaudio;
fn demo() -> portaudio::PaResult
{
let stream = portaudio::stream::Stream::open_default(
0, // input channels
1, // output channels
44100.0, // sample rate
portaudio::stream::FRAMES_PER_BUFFER_UNSPECIFIED,
None // no callback
)?;
stream.start()?;
let mut phase = 0.0f32;
let mut buffer = Vec::with_capacity(44100);
for _i in 0..44100
{
// Small amplitude such that the test does not produce sound
buffer.push(phase * 0.001);
phase += 0.03;
if phase > 1.0 { phase -= 2.0; }
}
stream.write(&buffer)?;
Ok(())
}
fn main()
{
portaudio::initialize().unwrap();
println!("{:?}", demo());
portaudio::terminate().unwrap();
}
依赖关系
~47KB