nendo-plugin-stemify-demucs


Namenendo-plugin-stemify-demucs JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://okio.ai
SummaryNendo Plugin for Music Source Separation.
upload_time2024-03-05 08:14:55
maintainer
docs_urlNone
authorAaron Abebe
requires_python>=3.8,<3.11
licenseMIT
keywords nendo ai machine learning audio generative music audio production audio generation audio analysis stemification souce separation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Nendo Plugin Stemify Demucs

<br>
<p align="left">
    <img src="https://okio.ai/docs/assets/nendo_core_logo.png" width="350" alt="Nendo Core">
</p>
<br>

<p align="left">
<a href="https://okio.ai" target="_blank">
    <img src="https://img.shields.io/website/https/okio.ai" alt="Website">
</a>
<a href="https://twitter.com/okio_ai" target="_blank">
    <img src="https://img.shields.io/twitter/url/https/twitter.com/okio_ai.svg?style=social&label=Follow%20%40okio_ai" alt="Twitter">
</a>
<a href="https://discord.gg/gaZMZKzScj" target="_blank">
    <img src="https://dcbadge.vercel.app/api/server/XpkUsjwXTp?compact=true&style=flat" alt="Discord">
</a>
</p>

---

Nendo Plugin for Music Source Separation (based on Meta [demucs](https://github.com/facebookresearch/demucs))

## Features

- Extract up to six different audio stems

## Installation

1. [Install Nendo](https://github.com/okio-ai/nendo#installation)
2. `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](https://okio.ai/docs/plugins).

For more advanced examples, check out the examples folder.
or try it in colab:

<a target="_blank" href="https://colab.research.google.com/drive/1rYBw5N0xzDf-NQJC1cQXqRBneBE8q4_z?usp=sharing">
    <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
</a>

```python
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](https://okio.ai/docs/contributing/)


## License

Nendo: MIT License

Demucs: MIT License
            

Raw data

            {
    "_id": null,
    "home_page": "https://okio.ai",
    "name": "nendo-plugin-stemify-demucs",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "keywords": "Nendo,AI,Machine Learning,Audio,Generative,Music,Audio Production,Audio Generation,Audio Analysis,Stemification,Souce Separation",
    "author": "Aaron Abebe",
    "author_email": "aaron@okio.ai",
    "download_url": "https://files.pythonhosted.org/packages/e8/b4/56206fef81c6d9b1aee6cd934f0097400d9325ec47c02b4e6ae1189992e1/nendo_plugin_stemify_demucs-0.1.3.tar.gz",
    "platform": null,
    "description": "# Nendo Plugin Stemify Demucs\n\n<br>\n<p align=\"left\">\n    <img src=\"https://okio.ai/docs/assets/nendo_core_logo.png\" width=\"350\" alt=\"Nendo Core\">\n</p>\n<br>\n\n<p align=\"left\">\n<a href=\"https://okio.ai\" target=\"_blank\">\n    <img src=\"https://img.shields.io/website/https/okio.ai\" alt=\"Website\">\n</a>\n<a href=\"https://twitter.com/okio_ai\" target=\"_blank\">\n    <img src=\"https://img.shields.io/twitter/url/https/twitter.com/okio_ai.svg?style=social&label=Follow%20%40okio_ai\" alt=\"Twitter\">\n</a>\n<a href=\"https://discord.gg/gaZMZKzScj\" target=\"_blank\">\n    <img src=\"https://dcbadge.vercel.app/api/server/XpkUsjwXTp?compact=true&style=flat\" alt=\"Discord\">\n</a>\n</p>\n\n---\n\nNendo Plugin for Music Source Separation (based on Meta [demucs](https://github.com/facebookresearch/demucs))\n\n## Features\n\n- Extract up to six different audio stems\n\n## Installation\n\n1. [Install Nendo](https://github.com/okio-ai/nendo#installation)\n2. `pip install nendo-plugin-stemify-demucs`\n\n## Usage\n\nTake a look at a basic usage example below.\nFor more detailed information, please refer to the [documentation](https://okio.ai/docs/plugins).\n\nFor more advanced examples, check out the examples folder.\nor try it in colab:\n\n<a target=\"_blank\" href=\"https://colab.research.google.com/drive/1rYBw5N0xzDf-NQJC1cQXqRBneBE8q4_z?usp=sharing\">\n    <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n</a>\n\n```python\nfrom nendo import Nendo, NendoConfig\n\nnd = Nendo(config=NendoConfig(plugins=[\"nendo_plugin_stemify_demucs\"]))\n\n# load track\ntrack = nd.library.add_track(file_path='/path/to/track.mp3')\n\n# run stemification to get 6 stems\nstems = nd.plugins.stemify_demucs(\n    track=track,\n    stem_types=[\"vocals\", \"drums\", \"bass\", \"other\", \"piano\", \"guitar\"],\n    model=\"htdemucs_6s\"\n)\nvocals, drums = stems[0], stems[1]\ndrums.play()\n\n# run stemification to get vocals and background\nstems = nd.plugins.stemify_demucs(\n    track=track,\n    stem_types=[\"vocals\", \"no_vocals\"],\n    model=\"mdx_extra\"\n)\n\nbackground = stems[1]\nbackground.play()\n```\n\n## Contributing\n\nVisit our docs to learn all about how to contribute to Nendo: [Contributing](https://okio.ai/docs/contributing/)\n\n\n## License\n\nNendo: MIT License\n\nDemucs: MIT License",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Nendo Plugin for Music Source Separation.",
    "version": "0.1.3",
    "project_urls": {
        "Homepage": "https://okio.ai",
        "Repository": "https://github.com/okio-ai/nendo_plugin_stemify_demucs"
    },
    "split_keywords": [
        "nendo",
        "ai",
        "machine learning",
        "audio",
        "generative",
        "music",
        "audio production",
        "audio generation",
        "audio analysis",
        "stemification",
        "souce separation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61bab5d74e3bc5923bdfd8c6fda2a8cb401995919fb12f88fd41ff811c835778",
                "md5": "3c574efc693369ec4af9b419bf37b4e8",
                "sha256": "65a44886fdf14fbb2bb2ea54d08ddb8f09bd3e8258c2d342bcc63fa264d3b6d7"
            },
            "downloads": -1,
            "filename": "nendo_plugin_stemify_demucs-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3c574efc693369ec4af9b419bf37b4e8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.11",
            "size": 5954,
            "upload_time": "2024-03-05T08:14:53",
            "upload_time_iso_8601": "2024-03-05T08:14:53.540733Z",
            "url": "https://files.pythonhosted.org/packages/61/ba/b5d74e3bc5923bdfd8c6fda2a8cb401995919fb12f88fd41ff811c835778/nendo_plugin_stemify_demucs-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8b456206fef81c6d9b1aee6cd934f0097400d9325ec47c02b4e6ae1189992e1",
                "md5": "f70731090e7975b47609b7bf4c0a42cc",
                "sha256": "ae1522d20201fe089349c4c2b48e2a3417dacdd54f22e2bb8948b4c56662b6e8"
            },
            "downloads": -1,
            "filename": "nendo_plugin_stemify_demucs-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "f70731090e7975b47609b7bf4c0a42cc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 5576,
            "upload_time": "2024-03-05T08:14:55",
            "upload_time_iso_8601": "2024-03-05T08:14:55.358900Z",
            "url": "https://files.pythonhosted.org/packages/e8/b4/56206fef81c6d9b1aee6cd934f0097400d9325ec47c02b4e6ae1189992e1/nendo_plugin_stemify_demucs-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-05 08:14:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "okio-ai",
    "github_project": "nendo_plugin_stemify_demucs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "nendo-plugin-stemify-demucs"
}
        
Elapsed time: 0.20139s