convertflac


Nameconvertflac JSON
Version 1.0.4 PyPI version JSON
download
home_page
SummaryConvert FLAC audio files into ALAC or MP3 files.
upload_time2024-01-31 14:31:04
maintainer
docs_urlNone
authorharu
requires_python~=3.11
license
keywords alac audio cli converter encoder flac mp3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- vale Microsoft.HeadingAcronyms = NO -->
# convertflac: Convert FLAC CLI
<!-- vale Microsoft.HeadingAcronyms = YES -->

[![Test](https://github.com/haru52/convertflac/actions/workflows/test.yml/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/test.yml)
[![Release](https://github.com/haru52/convertflac/actions/workflows/release.yml/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/release.yml)
[![CodeQL](https://github.com/haru52/convertflac/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/github-code-scanning/codeql)
[![Copy/Paste](https://github.com/haru52/convertflac/blob/main/report/jscpd-badge.svg)](https://github.com/haru52/convertflac/blob/main/report/jscpd-report.md)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](https://haru52.github.io/convertflac/CODE_OF_CONDUCT.html)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](https://commitizen.github.io/cz-cli/)
[![semantic-release: conventionalcommits](https://img.shields.io/badge/semantic--release-conventionalcommits-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)

## Overview

convertflac converts FLAC audio files into ALAC or MP3 files.

## Requirements

| Tool   | Version |
| ------ | ------- |
| FFmpeg | ^5.1.2  |

## Installation

```sh
pip install convertflac
```

## Usage

```console
Usage: convertflac [OPTIONS] INPUT_DIRECTORY_PATH
                   [OUTPUT_DIRECTORY_PATH]

  Convert FLAC audio files into Apple Lossless Audio Codec (ALAC) or
  MP3 320kbps CBR files.

Options:
  -c, --codec TEXT  Set the output codec (alac or mp3. Default: alac).
  --version         Show the version and exit.
  -h, --help        Show this message and exit.
```

If you don't input `[OUTPUT_DIRECTORY_PATH]`, convertflac makes `alac` or `mp3` directory in the current directory and sets this `alac/` or `mp3/` as the output directory.

## Update

```sh
pip install -U convertflac
```

## Uninstall

```sh
pip uninstall convertflac
```

## Description

- convertflac converts FLAC audio files into Apple Lossless Audio Codec (ALAC) or MP3 320kbps CBR files
- The output preserves the input directory structure
- The output ALAC/MP3 files preserve the input FLAC files' metadata
- If an ALAC/MP3 file with the same name already exists at the output directory, convertflac doesn't overwrite it

## Versioning policy

[Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html)

## License

[MIT](https://github.com/haru52/convertflac/blob/main/LICENSE)

## Contributing

[Contributing Guideline](https://haru52.github.io/convertflac/CONTRIBUTING.html)

## Documentation

[Documentation | convertflac](https://haru52.github.io/convertflac/)

<!-- vale Microsoft.Vocab = NO -->
## Author
<!-- vale Microsoft.Vocab = YES -->

[haru](https://haru52.com/)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "convertflac",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.11",
    "maintainer_email": "",
    "keywords": "alac,audio,cli,converter,encoder,flac,mp3",
    "author": "haru",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/51/22/35992bf038880d74a55e7fef3c5ab7cd5650b5e8b070197a306f5447b230/convertflac-1.0.4.tar.gz",
    "platform": null,
    "description": "<!-- vale Microsoft.HeadingAcronyms = NO -->\n# convertflac: Convert FLAC CLI\n<!-- vale Microsoft.HeadingAcronyms = YES -->\n\n[![Test](https://github.com/haru52/convertflac/actions/workflows/test.yml/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/test.yml)\n[![Release](https://github.com/haru52/convertflac/actions/workflows/release.yml/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/release.yml)\n[![CodeQL](https://github.com/haru52/convertflac/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/haru52/convertflac/actions/workflows/github-code-scanning/codeql)\n[![Copy/Paste](https://github.com/haru52/convertflac/blob/main/report/jscpd-badge.svg)](https://github.com/haru52/convertflac/blob/main/report/jscpd-report.md)\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](https://haru52.github.io/convertflac/CODE_OF_CONDUCT.html)\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](https://commitizen.github.io/cz-cli/)\n[![semantic-release: conventionalcommits](https://img.shields.io/badge/semantic--release-conventionalcommits-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)\n\n## Overview\n\nconvertflac converts FLAC audio files into ALAC or MP3 files.\n\n## Requirements\n\n| Tool   | Version |\n| ------ | ------- |\n| FFmpeg | ^5.1.2  |\n\n## Installation\n\n```sh\npip install convertflac\n```\n\n## Usage\n\n```console\nUsage: convertflac [OPTIONS] INPUT_DIRECTORY_PATH\n                   [OUTPUT_DIRECTORY_PATH]\n\n  Convert FLAC audio files into Apple Lossless Audio Codec (ALAC) or\n  MP3 320kbps CBR files.\n\nOptions:\n  -c, --codec TEXT  Set the output codec (alac or mp3. Default: alac).\n  --version         Show the version and exit.\n  -h, --help        Show this message and exit.\n```\n\nIf you don't input `[OUTPUT_DIRECTORY_PATH]`, convertflac makes `alac` or `mp3` directory in the current directory and sets this `alac/` or `mp3/` as the output directory.\n\n## Update\n\n```sh\npip install -U convertflac\n```\n\n## Uninstall\n\n```sh\npip uninstall convertflac\n```\n\n## Description\n\n- convertflac converts FLAC audio files into Apple Lossless Audio Codec (ALAC) or MP3 320kbps CBR files\n- The output preserves the input directory structure\n- The output ALAC/MP3 files preserve the input FLAC files' metadata\n- If an ALAC/MP3 file with the same name already exists at the output directory, convertflac doesn't overwrite it\n\n## Versioning policy\n\n[Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html)\n\n## License\n\n[MIT](https://github.com/haru52/convertflac/blob/main/LICENSE)\n\n## Contributing\n\n[Contributing Guideline](https://haru52.github.io/convertflac/CONTRIBUTING.html)\n\n## Documentation\n\n[Documentation | convertflac](https://haru52.github.io/convertflac/)\n\n<!-- vale Microsoft.Vocab = NO -->\n## Author\n<!-- vale Microsoft.Vocab = YES -->\n\n[haru](https://haru52.com/)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Convert FLAC audio files into ALAC or MP3 files.",
    "version": "1.0.4",
    "project_urls": {
        "Bug Tracker": "https://github.com/haru52/convertflac/issues",
        "Homepage": "https://github.com/haru52/convertflac#readme",
        "Repository": "https://github.com/haru52/convertflac.git"
    },
    "split_keywords": [
        "alac",
        "audio",
        "cli",
        "converter",
        "encoder",
        "flac",
        "mp3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adeb4eeef7d551e2210117ed810b0bb071eccce6091224bbaed4324ce1773c15",
                "md5": "25d326d67faa2ae3252535f9191567ca",
                "sha256": "251796de533dde1b640827a1489a82aeb3887e8d2f5cce39cd262282502fa53f"
            },
            "downloads": -1,
            "filename": "convertflac-1.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "25d326d67faa2ae3252535f9191567ca",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.11",
            "size": 5045,
            "upload_time": "2024-01-31T14:31:00",
            "upload_time_iso_8601": "2024-01-31T14:31:00.285434Z",
            "url": "https://files.pythonhosted.org/packages/ad/eb/4eeef7d551e2210117ed810b0bb071eccce6091224bbaed4324ce1773c15/convertflac-1.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "512235992bf038880d74a55e7fef3c5ab7cd5650b5e8b070197a306f5447b230",
                "md5": "f4bd58e9a6d5a97647600d8d341530e7",
                "sha256": "1d9fac4a53b42b4dd7ccb635a3c5a72ac99d94873cd8fc0dbd9f042a5ef81193"
            },
            "downloads": -1,
            "filename": "convertflac-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "f4bd58e9a6d5a97647600d8d341530e7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.11",
            "size": 129177,
            "upload_time": "2024-01-31T14:31:04",
            "upload_time_iso_8601": "2024-01-31T14:31:04.365225Z",
            "url": "https://files.pythonhosted.org/packages/51/22/35992bf038880d74a55e7fef3c5ab7cd5650b5e8b070197a306f5447b230/convertflac-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-31 14:31:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "haru52",
    "github_project": "convertflac",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "convertflac"
}
        
Elapsed time: 0.18344s