Nendo Plugin for Music Source Separation.
Project description
Nendo Plugin Stemify Demucs
Nendo Plugin for Music Source Separation (based on Meta demucs)
Features
- Extract up to six different audio stems
Installation
- Install Nendo
pip install nendo-plugin-stemify-demucs
Usage
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_stemify_demucs"]))
# load track
track = nd.library.add_track(file_path='/path/to/track.mp3')
# run stemification to get 6 stems
stems = nd.plugins.stemify_demucs(
track=track,
stem_types=["vocals", "drums", "bass", "other", "piano", "guitar"],
model="htdemucs_6s"
)
vocals, drums = stems[0], stems[1]
drums.play()
# run stemification to get vocals and background
stems = nd.plugins.stemify_demucs(
track=track,
stem_types=["vocals", "no_vocals"],
model="mdx_extra"
)
background = stems[1]
background.play()
Contributing
Visit our docs to learn all about how to contribute to Nendo: Contributing
License
Nendo: MIT License
Demucs: MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for nendo_plugin_stemify_demucs-0.1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fa7f1ae5a7d6cee732b45444d5ce79004d670eabc9b16c18e639c29a6e5e04d |
|
MD5 | 68a2103cc5dae32f39171318252c2711 |
|
BLAKE2b-256 | e41c03cb28101f83099413e03bf197ca2260ac052dfbb6951385fecaa318413c |
Close
Hashes for nendo_plugin_stemify_demucs-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7089c7aa20ad00d4d8c3b83d9f2ae70dee53180799030c4f3d4462d0ce775ce |
|
MD5 | 77fa06e8d1b219d4e78ce7b1fabf84da |
|
BLAKE2b-256 | e806ea97f3269414fe8cf4fbada4c93920b8ba69cf1689047f59b786e85e5e65 |