Audio quantization with grid detection and time-stretching (using rubberband).
- Quantize a
NendoTrack
or aNendoCollection
to a given BPM and grid - Use it in chains to automatically create quantized collections of your favorite tracks and loops
This plugin requires the rubberband
package to be installed in your system. Please refer to the rubberband documentation for further information.
- Install Nendo
pip install nendo-plugin-quantize-core
Take a look at a basic usage example below. For more detailed information, please refer to the documentation.
For more advanced examples, check out the examples folder. or try it in colab:
from nendo import Nendo, NendoConfig
nd = Nendo(config=NendoConfig(plugins=["nendo_plugin_quantize_core"]))
track = nd.library.add_track(file_path='/path/to/track.mp3')
quantized_track = nd.plugins.quantize_core(track=track)
Visit our docs to learn all about how to contribute to Nendo: Contributing
Nendo: MIT License
rubberband: GPL-2.0 License