remucs


Nameremucs JSON
Version 0.4 PyPI version JSON
download
home_pageNone
SummaryDemucs wrapper for remixing audio files with additional customizations
upload_time2024-03-25 21:57:10
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseMIT License Copyright (c) 2024 Jürgen Hock Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords digital audio signal processing dasp dafx effects filter demucs frequency phase spectrum algorithms analysis synthesis
VCS
bugtrack_url
requirements click numpy soundfile stftpitchshift tqdm
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Remucs

![language](https://img.shields.io/badge/languages-Python-blue)
![license](https://img.shields.io/github/license/jurihock/remucs?color=blue)
![test](https://img.shields.io/github/actions/workflow/status/jurihock/remucs/test.yml?branch=main&label=test)
![pypi](https://img.shields.io/pypi/v/remucs?color=gold)

The purpose of the _remucs_ command line tool is to extract the individual stems from a mix and remix them again in a certain way, e.g. by adjusting the volume gain, left-right channel balance and last but not least, applying transient-preserving pitch shifting. Since the stem extraction is based on the [adefossez/demucs](https://github.com/adefossez/demucs) engine, the stem choice is restricted to the _drums_, _bass_, _vocals_ and _other_ sources.

## Usage

```
Usage: remucs [OPTIONS] FILES...

Options:
  -f, --fine            Use fine-tuned “htdemucs_ft” model.
  -n, --norm            Normalize output amplitude.
  -m, --mono            Convert stereo input to mono.
  -b, --bala TEXT       Balance of individual stems "bass,drums,other,vocals",
                        e.g. "0,0.5,1,-1". [default: 0,0,0,0]
  -g, --gain TEXT       Gain of individual stems "bass,drums,other,vocals",
                        e.g. "2,1,0.5,0". [default: 1,1,1,1]
  -p, --pitch TEXT      Pitch shifting factor in semitones followed by cents,
                        e.g -12 or +12 or +3-50. [default: 0]
  -d, --data DIRECTORY  Directory where to store the intermediate files.
                        [default: <user’s home directory>]
  -q, --quiet           Don't trash stdout.
  -V, --version         Show the version and exit.
  -h, --help            Show this message and exit.
```

## Install

Choose between the latest _remucs_ release or the bleeding edge version:

```
pip install -U remucs
pip install -U git+https://github.com/jurihock/remucs#egg=remucs
```

Don't forget to install one of the available versions of _demucs_ as well:

```
pip install -U demucs
pip install -U git+https://github.com/adefossez/demucs#egg=demucs
```

## License

*remucs* is licensed under the terms of the MIT license.
For details please refer to the accompanying [LICENSE](LICENSE) file distributed with *remucs*.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "remucs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "digital, audio, signal, processing, dasp, dafx, effects, filter, demucs, frequency, phase, spectrum, algorithms, analysis, synthesis",
    "author": null,
    "author_email": "Juergen Hock <juergen.hock@jurihock.de>",
    "download_url": "https://files.pythonhosted.org/packages/f0/39/442ba3fc1123113c87dd650a198af1c0ab0e196259474295c3613cf65b32/remucs-0.4.tar.gz",
    "platform": null,
    "description": "# Remucs\n\n![language](https://img.shields.io/badge/languages-Python-blue)\n![license](https://img.shields.io/github/license/jurihock/remucs?color=blue)\n![test](https://img.shields.io/github/actions/workflow/status/jurihock/remucs/test.yml?branch=main&label=test)\n![pypi](https://img.shields.io/pypi/v/remucs?color=gold)\n\nThe purpose of the _remucs_ command line tool is to extract the individual stems from a mix and remix them again in a certain way, e.g. by adjusting the volume gain, left-right channel balance and last but not least, applying transient-preserving pitch shifting. Since the stem extraction is based on the [adefossez/demucs](https://github.com/adefossez/demucs) engine, the stem choice is restricted to the _drums_, _bass_, _vocals_ and _other_ sources.\n\n## Usage\n\n```\nUsage: remucs [OPTIONS] FILES...\n\nOptions:\n  -f, --fine            Use fine-tuned \u201chtdemucs_ft\u201d model.\n  -n, --norm            Normalize output amplitude.\n  -m, --mono            Convert stereo input to mono.\n  -b, --bala TEXT       Balance of individual stems \"bass,drums,other,vocals\",\n                        e.g. \"0,0.5,1,-1\". [default: 0,0,0,0]\n  -g, --gain TEXT       Gain of individual stems \"bass,drums,other,vocals\",\n                        e.g. \"2,1,0.5,0\". [default: 1,1,1,1]\n  -p, --pitch TEXT      Pitch shifting factor in semitones followed by cents,\n                        e.g -12 or +12 or +3-50. [default: 0]\n  -d, --data DIRECTORY  Directory where to store the intermediate files.\n                        [default: <user\u2019s home directory>]\n  -q, --quiet           Don't trash stdout.\n  -V, --version         Show the version and exit.\n  -h, --help            Show this message and exit.\n```\n\n## Install\n\nChoose between the latest _remucs_ release or the bleeding edge version:\n\n```\npip install -U remucs\npip install -U git+https://github.com/jurihock/remucs#egg=remucs\n```\n\nDon't forget to install one of the available versions of _demucs_ as well:\n\n```\npip install -U demucs\npip install -U git+https://github.com/adefossez/demucs#egg=demucs\n```\n\n## License\n\n*remucs* is licensed under the terms of the MIT license.\nFor details please refer to the accompanying [LICENSE](LICENSE) file distributed with *remucs*.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 J\u00fcrgen Hock  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Demucs wrapper for remixing audio files with additional customizations",
    "version": "0.4",
    "project_urls": {
        "Documentation": "https://github.com/jurihock/remucs/blob/main/README.md",
        "Homepage": "https://github.com/jurihock/remucs",
        "Issues": "https://github.com/jurihock/remucs/issues",
        "Repository": "https://github.com/jurihock/remucs.git"
    },
    "split_keywords": [
        "digital",
        " audio",
        " signal",
        " processing",
        " dasp",
        " dafx",
        " effects",
        " filter",
        " demucs",
        " frequency",
        " phase",
        " spectrum",
        " algorithms",
        " analysis",
        " synthesis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6902ba422b0203e3c4ed5e0181662e8644042794e9456f9672f460b32daf1652",
                "md5": "bff3d2336656f9934f41d668b314832e",
                "sha256": "69a13a373e8fabbbc2d87a37072ed1fd5e9431d09fe76e0669d95fa9d0fc6fb4"
            },
            "downloads": -1,
            "filename": "remucs-0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bff3d2336656f9934f41d668b314832e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 10535,
            "upload_time": "2024-03-25T21:57:08",
            "upload_time_iso_8601": "2024-03-25T21:57:08.597182Z",
            "url": "https://files.pythonhosted.org/packages/69/02/ba422b0203e3c4ed5e0181662e8644042794e9456f9672f460b32daf1652/remucs-0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f039442ba3fc1123113c87dd650a198af1c0ab0e196259474295c3613cf65b32",
                "md5": "5cec7ad5dcc4f408fc5363f0a456aaa9",
                "sha256": "f57773440ae6e4c9d721b1fad214b16d03a2d15a9dc599654b1aa0bdfbb3fb7c"
            },
            "downloads": -1,
            "filename": "remucs-0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "5cec7ad5dcc4f408fc5363f0a456aaa9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 11362,
            "upload_time": "2024-03-25T21:57:10",
            "upload_time_iso_8601": "2024-03-25T21:57:10.686863Z",
            "url": "https://files.pythonhosted.org/packages/f0/39/442ba3fc1123113c87dd650a198af1c0ab0e196259474295c3613cf65b32/remucs-0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 21:57:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jurihock",
    "github_project": "remucs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "click",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "soundfile",
            "specs": []
        },
        {
            "name": "stftpitchshift",
            "specs": []
        },
        {
            "name": "tqdm",
            "specs": []
        }
    ],
    "lcname": "remucs"
}
        
Elapsed time: 0.25862s