Skip to content

Commit

Permalink
implemented forward real stft
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Sep 20, 2024
1 parent 9ed5e8b commit 363a996
Show file tree
Hide file tree
Showing 21 changed files with 1,095 additions and 939 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [0.3.0] - 2024-08-XX
# [0.3.0] - 2024-09-19
### Added
Forward and inverse STFT.
- Added forward STFT and real STFT.

### Fixed
`HArray`'s `is_shared` is now `is_unique` with a new implementation.
- `HArray`'s `is_shared` is now `is_unique` with a new implementation.

# [0.2.0] - 2024-07-14
### Added
Expand Down
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,23 @@ members = [
"harmonium-fft",
"harmonium-resample",
"harmonium-window",
"harmonium-stft",
]

[workspace.dependencies]
num-traits = { version = "0.2", default-features = false }
rustfft = { version = "6.2", default-features = false, features = ["avx", "sse", "neon"] }
realfft = { version = "3.3", default-features = false }
rubato = { version = "0.15.0", default-features = false, features = ["fft_resampler"] }
ndarray = { version = "0.16", default-features = false }
symphonia = { version = "0.5.4", default-features = false }
rodio = { version = "0.19.0", default-features = false }
num-complex = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }

harmonium-core = { path = "harmonium-core", default-features = false }
harmonium-io = { path = "harmonium-io", default-features = false }
harmonium-fft = { path = "harmonium-fft", default-features = false }
harmonium-resample = { path = "harmonium-resample", default-features = false }
harmonium-window = { path = "harmonium-window", default-features = false }
harmonium-stft = { path = "harmonium-stft", default-features = false }

[profile.release]
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Harmonium is an audio interface inspired by Python's [librosa](https://github.co
- Decode audio
- Retrieve audio metadata
- Asynchronous and Synchronous resampling
- FFT
- FFT and STFT

To learn more, read the [documentation](https://daniellga.github.io/harmonium/).

Expand Down
1 change: 1 addition & 0 deletions harmonium-fft/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub mod fft;
pub mod stft;
Loading

0 comments on commit 363a996

Please sign in to comment.