nendo-plugin-loopify


Namenendo-plugin-loopify JSON
Version 0.1.7 PyPI version JSON
download
home_pagehttps://okio.ai
SummaryNendo plugin for automatic audio loop extraction.
upload_time2024-04-27 12:34:59
maintainerNone
docs_urlNone
authorAaron Abebe
requires_python<3.11,>=3.8
licenseMIT
keywords nendo plugin loopification music loop generation ai machine learning audio generative music audio production audio generation audio analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Nendo Plugin Loopify

<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>

---

Automatic audio loop extraction.

## Features

- Automatically find loopable sections in a `NendoTrack` 
- Automate your sample digging process

## Requirements

Due to `madmom` versions < 0.17 errors with python 3.10, we require the latest version of the  package from git, where this is fixed. See also [this related issue](https://github.com/CPJKU/madmom/issues/502).

Run:

`pip install git+https://github.com/CPJKU/madmom.git@0551aa8`

## Installation

1. [Install Nendo](https://github.com/okio-ai/nendo#installation)
2. `pip install nendo-plugin-loopify`

## 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/1OD38SedBRHhOYpwGpzni2SJv-Osxu__i?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_loopify"]))
track = nd.library.add_track(file_path='/path/to/track.mp3')

generated_loops = nd.plugins.loopify(
    track=track,
    n_loops=4,
    beats_per_loop=8
)
generated_loops[0].loop()
```

## Contributing

Visit our docs to learn all about how to contribute to Nendo: [Contributing](https://okio.ai/docs/contributing/)

## License 

Nendo: MIT License

Madmom: BSD License

Pretrained models: The weights are released under the CC-BY-NC 4.0 license
            

Raw data

            {
    "_id": null,
    "home_page": "https://okio.ai",
    "name": "nendo-plugin-loopify",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.11,>=3.8",
    "maintainer_email": null,
    "keywords": "Nendo, Plugin, Loopification, Music loop generation, AI, Machine Learning, Audio, Generative, Music, Audio Production, Audio Generation, Audio Analysis",
    "author": "Aaron Abebe",
    "author_email": "aaron@okio.ai",
    "download_url": "https://files.pythonhosted.org/packages/ec/2a/43bcd6a87c49b0c5b0d8c3b8b907b1ccd7e4dcdb4a1015800eea55a9cba4/nendo_plugin_loopify-0.1.7.tar.gz",
    "platform": null,
    "description": "# Nendo Plugin Loopify\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\nAutomatic audio loop extraction.\n\n## Features\n\n- Automatically find loopable sections in a `NendoTrack` \n- Automate your sample digging process\n\n## Requirements\n\nDue to `madmom` versions < 0.17 errors with python 3.10, we require the latest version of the  package from git, where this is fixed. See also [this related issue](https://github.com/CPJKU/madmom/issues/502).\n\nRun:\n\n`pip install git+https://github.com/CPJKU/madmom.git@0551aa8`\n\n## Installation\n\n1. [Install Nendo](https://github.com/okio-ai/nendo#installation)\n2. `pip install nendo-plugin-loopify`\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/1OD38SedBRHhOYpwGpzni2SJv-Osxu__i?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_loopify\"]))\ntrack = nd.library.add_track(file_path='/path/to/track.mp3')\n\ngenerated_loops = nd.plugins.loopify(\n    track=track,\n    n_loops=4,\n    beats_per_loop=8\n)\ngenerated_loops[0].loop()\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## License \n\nNendo: MIT License\n\nMadmom: BSD License\n\nPretrained models: The weights are released under the CC-BY-NC 4.0 license",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Nendo plugin for automatic audio loop extraction.",
    "version": "0.1.7",
    "project_urls": {
        "Homepage": "https://okio.ai",
        "Repository": "https://github.com/okio-ai/nendo_plugin_loopify"
    },
    "split_keywords": [
        "nendo",
        " plugin",
        " loopification",
        " music loop generation",
        " ai",
        " machine learning",
        " audio",
        " generative",
        " music",
        " audio production",
        " audio generation",
        " audio analysis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e50fb335867ea19fc60f9fbebd3154e9ed6ddf636ad11e7ca849dc3e162e6c51",
                "md5": "29aceaecc34a2b28cb7984ae18b79890",
                "sha256": "f841770b3349c562258bac1dc2d4c06cb14deb02d35d6a34faecb8c67b96a6af"
            },
            "downloads": -1,
            "filename": "nendo_plugin_loopify-0.1.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "29aceaecc34a2b28cb7984ae18b79890",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.11,>=3.8",
            "size": 1504844,
            "upload_time": "2024-04-27T12:34:42",
            "upload_time_iso_8601": "2024-04-27T12:34:42.449789Z",
            "url": "https://files.pythonhosted.org/packages/e5/0f/b335867ea19fc60f9fbebd3154e9ed6ddf636ad11e7ca849dc3e162e6c51/nendo_plugin_loopify-0.1.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec2a43bcd6a87c49b0c5b0d8c3b8b907b1ccd7e4dcdb4a1015800eea55a9cba4",
                "md5": "f45c39faede038219dc3c6e1d7962133",
                "sha256": "4d2c675413eb1529f4c257e35a3a1e48b25dc12f3c860c456fe672eb93290d84"
            },
            "downloads": -1,
            "filename": "nendo_plugin_loopify-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "f45c39faede038219dc3c6e1d7962133",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.11,>=3.8",
            "size": 1506631,
            "upload_time": "2024-04-27T12:34:59",
            "upload_time_iso_8601": "2024-04-27T12:34:59.479337Z",
            "url": "https://files.pythonhosted.org/packages/ec/2a/43bcd6a87c49b0c5b0d8c3b8b907b1ccd7e4dcdb4a1015800eea55a9cba4/nendo_plugin_loopify-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 12:34:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "okio-ai",
    "github_project": "nendo_plugin_loopify",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "nendo-plugin-loopify"
}
        
Elapsed time: 0.26903s