1个不稳定版本

0.11.0 2020年5月29日

音频 中排名 695

Download history 17049/week @ 2024-03-14 17995/week @ 2024-03-21 17179/week @ 2024-03-28 22676/week @ 2024-04-04 21506/week @ 2024-04-11 22819/week @ 2024-04-18 22335/week @ 2024-04-25 28428/week @ 2024-05-02 21866/week @ 2024-05-09 36213/week @ 2024-05-16 33959/week @ 2024-05-23 37489/week @ 2024-05-30 36318/week @ 2024-06-06 39859/week @ 2024-06-13 34706/week @ 2024-06-20 32522/week @ 2024-06-27

每月下载量 151,613
20 个Crates中使用(直接使用13个)

MIT/Apache

185KB
3K SLoC

dasp 操作状态 docs.rs

Rust中的数字音频信号处理。

以前是samplecrate

一系列crate,提供使用PCM(脉冲编码调制)DSP(数字信号处理)的基本功能。换句话说,dasp提供了一套底层、高性能的工具,包括用于处理数字音频信号的类型、特性和函数。

dasp库不需要动态分配1并且没有依赖。目标是设计一个类似于std的库,但用于音频DSP;保持对可移植和快速基础的关注。

1:除了功能门控的SignalBus特性,偶尔在将Signal树转换为有向无环图时有用。

在此处找到API文档

Crates

dasp是一个模块化的crate集合,允许用户选择他们项目所需的精确工具集。以下crate包含在这个存储库中

链接 描述
dasp Crates.io docs.rs 顶层API,包含所有crate的功能。
dasp_sample Crates.io docs.rs 示例trait、类型、转换和操作。
dasp_frame Crates.io docs.rs 帧trait、类型、转换和操作。
dasp_slice Crates.io docs.rs 样本/帧切片的转换和操作。
dasp_ring_buffer Crates.io docs.rs 简单的固定和有界环形缓冲区。
dasp_peak Crates.io docs.rs 使用半/全正负波整流器进行峰值检测。
dasp_rms Crates.io docs.rs 使用可配置窗口进行RMS检测。
dasp_envelope Crates.io docs.rs 使用峰值和RMS实现进行包络检测。
dasp_interpolate Crates.io docs.rs 帧间速率插值(线性、sinc等)。
dasp_window Crates.io docs.rs 窗函数抽象(汉宁窗、矩形窗)。
dasp_signal Crates.io docs.rs 音频帧流的迭代器API。

deps-graph

红色虚线表示可选依赖,黑色实线表示必需依赖。

特性

使用 Sample 特征,以最优、性能敏感的方式在任意位深度之间转换,并保持泛型。为所有有符号整数、无符号整数和浮点原始类型提供了实现,包括11位、20位、24位和48位的有符号和无符号解包整数。例如

assert_eq!((-1.0).to_sample::<u8>(), 0);
assert_eq!(0.0.to_sample::<u8>(), 128);
assert_eq!(0i32.to_sample::<u32>(), 2_147_483_648);
assert_eq!(I24::new(0).unwrap(), Sample::from_sample(0.0));
assert_eq!(0.0, Sample::EQUILIBRIUM);

使用 Frame 特征,在特定时刻保持对通道数的泛型。为长度最多为32个元素的固定大小数组提供了实现。

let foo = [0.1, 0.2, -0.1, -0.2];
let bar = foo.scale_amp(2.0);
assert_eq!(bar, [0.2, 0.4, -0.2, -0.4]);

assert_eq!(Mono::<f32>::EQUILIBRIUM, [0.0]);
assert_eq!(Stereo::<f32>::EQUILIBRIUM, [0.0, 0.0]);
assert_eq!(<[f32; 3]>::EQUILIBRIUM, [0.0, 0.0, 0.0]);

let foo = [0i16, 0];
let bar: [u8; 2] = foo.map(Sample::to_sample);
assert_eq!(bar, [128u8, 128]);

使用(由 "signal" 功能启用)的 Signal 特征来处理产生 Frame 的无限迭代器类型。 Signal 提供了添加、缩放、偏移、乘法、裁剪、生成、监控和缓冲 Frame 流的方法。使用 Signal 可以轻松、可读地创建丰富和复杂的数字信号处理(DSP)图,并具有简单、熟悉的API。

// Clip to an amplitude of 0.9.
let frames = [[1.2, 0.8], [-0.7, -1.4]];
let clipped: Vec<_> = signal::from_iter(frames.iter().cloned()).clip_amp(0.9).take(2).collect();
assert_eq!(clipped, vec![[0.9, 0.8], [-0.7, -0.9]]);

// Add `a` with `b` and yield the result.
let a = [0.2, -0.6, 0.5];
let b = [0.2, 0.1, -0.8];
let a_signal = signal::from_iter(a.iter().cloned());
let b_signal = signal::from_iter(b.iter().cloned());
let added: Vec<f32> = a_signal.add_amp(b_signal).take(3).collect();
assert_eq!(added, vec![0.4, -0.5, -0.3]);

// Scale the playback rate by `0.5`.
let foo = [0.0, 1.0, 0.0, -1.0];
let mut source = signal::from_iter(foo.iter().cloned());
let a = source.next();
let b = source.next();
let interp = Linear::new(a, b);
let frames: Vec<_> = source.scale_hz(interp, 0.5).take(8).collect();
assert_eq!(&frames[..], &[0.0, 0.5, 1.0, 0.5, 0.0, -0.5, -1.0, -0.5][..]);

// Convert a signal to its RMS.
let signal = signal::rate(44_100.0).const_hz(440.0).sine();;
let ring_buffer = ring_buffer::Fixed::from([0.0; WINDOW_SIZE]);
let mut rms_signal = signal.rms(ring_buffer);

signal 模块还提供了一系列 Signal 源类型,包括

  • FromIterator
  • FromInterleavedSamplesIterator
  • Equilibrium(静默信号)
  • 相位
  • 正弦
  • 锯齿波
  • 方波
  • 噪声
  • NoiseSimplex
  • Gen(从 Fn() -> F 生成帧)
  • GenMut(从 FnMut() -> F 生成帧)

使用(通过 "slice" 功能启用)的 slice 模块函数处理 Frame 的块。提供了转换函数,可以在不进行任何分配的情况下安全地将交织的 Sample 的切片和 Frame 的切片之间进行转换。例如

let frames = &[[0.0, 0.5], [0.0, -0.5]][..];
let samples = slice::to_sample_slice(frames);
assert_eq!(samples, &[0.0, 0.5, 0.0, -0.5][..]);

let samples = &[0.0, 0.5, 0.0, -0.5][..];
let frames = slice::to_frame_slice(samples);
assert_eq!(frames, Some(&[[0.0, 0.5], [0.0, -0.5]][..]));

let samples = &[0.0, 0.5, 0.0][..];
let frames = slice::to_frame_slice(samples);
assert_eq!(frames, None::<&[[f32; 2]]>);

signal::interpolate 模块提供了一个 Converter 类型,用于转换和插值 Signal 的速率。这对于样本率转换和回放速率乘法都很有用。 Converter 可以使用多种插值方法,库中提供了 Floor、Linear 和 Sinc 插值。

ring_buffer 模块提供了通用的 FixedBounded 环形缓冲区类型,两者都可以与所有类型的拥有、借用、栈和分配的缓冲区一起使用。

peak 模块可用于监控信号的峰值。提供的峰值整流器包括 full_wavepositive_half_wavenegative_half_wave

rms 模块提供了一个灵活的 Rms 类型,可用于进行 RMS(均方根)检测。任何 Fixed 环形缓冲区都可以用作 RMS 检测的窗口。

envelope 模块提供了一个 Detector 类型(也称为 Follower),允许检测信号的包络。 Detector 对检测类型 Detection - RmsPeak 检测是泛型的。例如

let signal = signal::rate(4.0).const_hz(1.0).sine();
let attack = 1.0;
let release = 1.0;
let detector = envelope::Detector::peak(attack, release);
let mut envelope = signal.detect_envelope(detector);
assert_eq!(
    envelope.take(4).collect::<Vec<_>>(),
    vec![0.0, 0.6321205496788025, 0.23254416035257117, 0.7176687675647109]
);

no_std

所有包都可以与或无 std 库进行编译。默认情况下启用 std 库,但可以通过 --no-default-features 禁用。

要启用一个包的所有功能而 使用 std 库,可以使用 --no-default-features --features "all-no-std"

请注意,某些包需要 core_intrinsics 功能才能在 no_std 上下文中执行操作,如 sincospowf32。这意味着这些包需要夜间工具链才能在 no_std 上下文中构建。

贡献

如果 dasp 缺少您希望拥有的类型、转换或其他基本功能,请随时提交问题或拉取请求!人多力量大 :)

许可证

许可协议如下之一

任您选择。

贡献

除非您明确声明,否则根据 Apache-2.0 许可证定义,您提交的任何有意包含在作品中的贡献,均应按上述方式双重许可,不附加任何额外条款或条件。

依赖项