dasp icon indicating copy to clipboard operation
dasp copied to clipboard

The fundamentals for Digital Audio Signal Processing. Formerly `sample`.

Results 64 dasp issues
Sort by recently updated
recently updated
newest added

Hi, this PR introduces a new struct and a method to specify the initial phase of a signal, represented by a value between 0 and 1. Example: ```rust use dasp_signal::{self...

Hi, is it currently possible to offset the phase of a Signal (in `dasp_signal`)? For example, when defining a sine wave, how could I displace it by x rad? `signal::rate(sample_rate).const_hz(freq).sine()`...

This PR makes `Node` and `Input` generic by edge weight, and passes the edge weight to `process` on each `Input`, resolving a TODO in the docs. This is only implemented...

Currently, the `Frame` trait is only implemented for `[S; N] where S: Sample` for N = 1-32. While realistically more than sufficient, it makes it difficult for dependent code to...

Hi! So nice to post here first time. I want to ask current best practice for the signature of an audio callback function with `dasp`. I'm currently working on embedded...

I think it is overkill that all `dasp` libraries require `Nightly` just because there is no `sqrt()` function implementation for floating point types in `no_std` environment. In my case, I...

Documentation for to_signed_frame and to_float_frame trait methods was in parts swapped. Very small change

Hi, I would like to import the dasp_sample crate for use in AOSP and AOSP importer checks for license files that are bundled along with the crate that was downloaded...

Hi everyone! Looking at the issues and commits, it seems like there are PRs and issues from 2022 that are still open, and not much recent activity. Since dasp feels...

## Summary This is a feature request to add support for the Taylor window ## Expected Result A function or method is available to generate a Taylor window, similar to...