Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sheldonkwoodward/flac-to-alac
A simple script that utilizes ffmpeg to convert FLAC files to ALAC losslessly while preserving metadata.
https://github.com/sheldonkwoodward/flac-to-alac
alac ffmpeg flac
Last synced: about 1 month ago
JSON representation
A simple script that utilizes ffmpeg to convert FLAC files to ALAC losslessly while preserving metadata.
- Host: GitHub
- URL: https://github.com/sheldonkwoodward/flac-to-alac
- Owner: sheldonkwoodward
- Created: 2019-07-28T03:33:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T05:34:10.000Z (about 2 years ago)
- Last Synced: 2023-02-28T16:56:39.346Z (almost 2 years ago)
- Topics: alac, ffmpeg, flac
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FLAC to ALAC
A simple script that utilizes ffmpeg to convert FLAC files to ALAC losslessly while preserving metadata. The idea is that this script will convert one album at a time to ALAC. It assumes that there is artwork embedded in the files. There is a commented line that will also embed the album artwork in each output file for those who would like.## Usage
The script takes two arguments, the source FLAC directory and the destination ALAC directory. The ALAC directory will be created if it does not exist. All files with the `.flac` extension will be read from the FLAC directory. Run the script like so:```
$ ./flac-to-alac.sh /path/to/source/album /path/to/output
```Note that the paths passed in **should not have a trailing slash**, this is a primitive script so treat it so.