https://github.com/shamazmazum/cl-audio-resample
Strange audio resampler
https://github.com/shamazmazum/cl-audio-resample
dsp resampling
Last synced: 5 months ago
JSON representation
Strange audio resampler
- Host: GitHub
- URL: https://github.com/shamazmazum/cl-audio-resample
- Owner: shamazmazum
- License: bsd-2-clause
- Created: 2018-03-14T17:55:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T17:55:57.000Z (over 2 years ago)
- Last Synced: 2025-04-03T22:13:38.829Z (about 1 year ago)
- Topics: dsp, resampling
- Language: Common Lisp
- Homepage:
- Size: 1.91 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
cl-audio-resample
===================
**cl-audio-resample** is an amateur audio resampler ;-)
You can resample your audio data (in the form of array of single-floats) like so:
~~~~~~{.lisp}
(cl-audio-resample:resample data old-samplerate new-samplerate)
~~~~~~
The first run is usually slow, as it takes time to calculate the low-pass filter.
I'll try to improve performance in the future.