nendo_plugin_loopify


Namenendo_plugin_loopify JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://okio.ai
SummaryNendo plugin for automatic audio loop extraction.
upload_time2023-12-22 11:12:05
maintainer
docs_urlNone
authorAaron Abebe
requires_python>=3.8,<3.11
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>

---

![Documentation](https://img.shields.io/website/https/nendo.ai)
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/okio_ai.svg?style=social&label=Follow%20%40okio_ai)](https://twitter.com/okio_ai) [![](https://dcbadge.vercel.app/api/server/XpkUsjwXTp?compact=true&style=flat)](https://discord.gg/XpkUsjwXTp)


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": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "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/fd/5c/d5408074842d6b4b6d6c5041ae7f4dedfb9d156823b149f6d2872a8f6e83/nendo_plugin_loopify-0.1.2.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---\n\n![Documentation](https://img.shields.io/website/https/nendo.ai)\n[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/okio_ai.svg?style=social&label=Follow%20%40okio_ai)](https://twitter.com/okio_ai) [![](https://dcbadge.vercel.app/api/server/XpkUsjwXTp?compact=true&style=flat)](https://discord.gg/XpkUsjwXTp)\n\n\nAutomatic audio loop extraction.\n\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.2",
    "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": "48cc7e85835b1d508012dc1c94f0ee8bb3562fa783b0d48f78f7ea4da980d0e2",
                "md5": "b0ced9b478bcc880bb00eca3411f7f87",
                "sha256": "ab9ab92f3801c42467248d8c302b26d07d6bc548cbc20f4da3010d645158da88"
            },
            "downloads": -1,
            "filename": "nendo_plugin_loopify-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b0ced9b478bcc880bb00eca3411f7f87",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.11",
            "size": 1503591,
            "upload_time": "2023-12-22T11:12:00",
            "upload_time_iso_8601": "2023-12-22T11:12:00.423464Z",
            "url": "https://files.pythonhosted.org/packages/48/cc/7e85835b1d508012dc1c94f0ee8bb3562fa783b0d48f78f7ea4da980d0e2/nendo_plugin_loopify-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd5cd5408074842d6b4b6d6c5041ae7f4dedfb9d156823b149f6d2872a8f6e83",
                "md5": "831165eb80c35f0c8c53a10507c73826",
                "sha256": "e38c55b3cef2959784968bd62642e51ce82b9dfe30e5943a331e1abe90777f20"
            },
            "downloads": -1,
            "filename": "nendo_plugin_loopify-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "831165eb80c35f0c8c53a10507c73826",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 1505459,
            "upload_time": "2023-12-22T11:12:05",
            "upload_time_iso_8601": "2023-12-22T11:12:05.338048Z",
            "url": "https://files.pythonhosted.org/packages/fd/5c/d5408074842d6b4b6d6c5041ae7f4dedfb9d156823b149f6d2872a8f6e83/nendo_plugin_loopify-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-22 11:12:05",
    "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.19624s