Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yinyanghu/cuefix
A simple tool to fix problematic CUE files. Enjoy your HiFi!
https://github.com/yinyanghu/cuefix
audio hifi metadata-editor tool
Last synced: 3 months ago
JSON representation
A simple tool to fix problematic CUE files. Enjoy your HiFi!
- Host: GitHub
- URL: https://github.com/yinyanghu/cuefix
- Owner: yinyanghu
- License: gpl-3.0
- Created: 2020-07-24T20:20:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-06T04:41:46.000Z (over 4 years ago)
- Last Synced: 2024-10-29T00:38:32.354Z (4 months ago)
- Topics: audio, hifi, metadata-editor, tool
- Language: Python
- Homepage:
- Size: 98.6 KB
- Stars: 19
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CueFix
[![Python](https://img.shields.io/pypi/pyversions/cuefix.svg?style=plastic)](https://badge.fury.io/py/cuefix)
[![PyPI](https://badge.fury.io/py/cuefix.svg)](https://badge.fury.io/py/cuefix)
[![Travis-CI](https://travis-ci.com/yinyanghu/cuefix.svg)](https://travis-ci.com/github/yinyanghu/cuefix)
[![Maintained](https://img.shields.io/maintenance/yes/2020.svg)](https://github.com/yinyanghu/cuefix)
[![Downloads](https://pepy.tech/badge/cuefix)](https://pepy.tech/project/cuefix)
[![Join the chat at https://gitter.im/cuefix/community](https://badges.gitter.im/cuefix/community.svg)](https://gitter.im/cuefix/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
![License](https://img.shields.io/github/license/yinyanghu/cuefix)CueFix is simple command-line tool to fix CUE files which are popular in lossless audio / albums.
CueFix provides the following functionalities:
- automatically detect encoding of CUE file: GB2312, GBK, GB18030, UTF-8, UTF-8 BOM, and SHIFT-JIS
- convert encoding of CUE file: support GB2312, UTF-8, UTF-8 BOM, etc.
- convert newline format of CUE file: support Windows CRLF and Unix LF
- scan the directory and fix not matched audio file in CUE file
- backup the original CUE file so that users can revert the CUE file back
- interactive with users to verify fixed CUE filesPlease feel free to fork and contribute to the project if you like.
## Installation
### Prerequisites
The following dependencies are necessary:
- Python 3.6 or above
**Option 1: Install via pip**
The official release of `cuefix` is distributed on PyPI. Note that you should use the Python 3 version of `pip`:
```bash
$ pip3 install cuefix
```**Option 2: Download from Github or git clone**
This is the recommended way for developers.
```bash
$ git clone git://github.com/yinyanghu/cuefix
```Run `./setup.py install` to install `cuefix` to your user path.
## Upgrading
If you install `cuefix` using `pip`, you could upgrade it via
```bash
$ pip3 install --upgrade cuefix
```## Getting Started
```
$ cuefix -h
usage: cuefix [-h] [--version] [-v] [-y] [-i] [--dryrun] [-e {utf-8-sig,utf-8,gb2312}] [-n {unix,windows}]
[--no-encoding] [--no-newline] [--no-backup]
filepathFix a CUE file in a directory: convert encoding, convert newline character, fix not matched audio file.
positional arguments:
filepath file path to the input cue fileoptional arguments:
-h, --help show this help message and exit
--version print the version of cuefix and exit
-v, --verbose enable verbose outputdry-run options:
-y, --yes disable interactive mode and yes to all prompts
-i, --info display metainfo of the input cue file only
--dryrun dry-run and print out fixed cue filefix options:
-e {utf-8-sig,utf-8,gb2312}, --encoding {utf-8-sig,utf-8,gb2312}
encoding which cue file will be converted to, default is UTF-8 BOM (utf-8-sig)
-n {unix,windows}, --newline {unix,windows}
newline format which cue file will be converted to, default is Unix
--no-encoding converting encoding will be skipped
--no-newline converting newline will be skippedbackup options:
--no-backup no backup for the input cue file, USE WITH CAUTION!
```You can recursively run `cuefix` to fix all CUE file in a directory:
```bash
$ find -type f -name "*.cue" -exec cuefix -v {} \;
```## CUE Formats Supported by Popular Media Players
### Media Players
- [Foobar 2000](https://www.foobar2000.org/)
- Windows (version 1.5.5)
- [DeaDBeeF](https://deadbeef.sourceforge.io/)
- Linux (version 1.8.4)
- Android
- Windows (unstable, nightly build)
- macOS (unstable, nightly build)
- [VOX](https://vox.rocks/)
- macOS (version 3.3.17)
- iOS
- [Synology Audio Station](https://www.synology.com/en-ca/dsm/feature/audio_station)
- Synology DSM (version 6.2.3)
- Audio Station (version 6.5.5-3374)### Encoding
Please use the following encoding name in `cuefix`:
- UTF-8: `utf-8`
- UTF-8 BOM: `utf-8-sig`
- GB 2312: `gb2312`| | Platform | UTF-8 | UTF-8 BOM | GB 2312 |
| :--------------------: | :-------------: | :----------------: | :----------------: | :----------------: |
| Foobar 2000 | Windows | :x: | :heavy_check_mark: | :heavy_check_mark: |
| DeaDBeeF | Linux / Android | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| VOX | macOS / iOS | :heavy_check_mark: | :heavy_check_mark: | :x: |
| Synology Audio Station | NAS / Linux | :heavy_check_mark: | :heavy_check_mark: | :x: |> Note: DeaDBeeF on Linux could support CUE file in encoding GB 2312 by enabling `Chinese CP 936 detection and recording` in the settings.
> However, DeaDBeeF on macOS still cannot support GB 2312 even if we enable the setting.
> DeadDBeeF on Android has not been tested yet.> Note: VOX on iOS has not been tested yet.
### Newline
| | Platform | Unix (LF) | Windows (CRLF) |
| :--------------------: | :-------------: | :----------------: | :----------------: |
| Foobar 2000 | Windows | :heavy_check_mark: | :heavy_check_mark: |
| DeaDBeeF | Linux / Android | :heavy_check_mark: | :heavy_check_mark: |
| VOX | macOS / iOS | :heavy_check_mark: | :heavy_check_mark: |
| Synology Audio Station | NAS / Linux | :heavy_check_mark: | :heavy_check_mark: |## License
[GNU General Public License v3.0](https://github.com/yinyanghu/cuefix/blob/master/LICENSE)