flac: added splitting by cue

master
tiyn 2 years ago
parent 01aee89e94
commit 7fd8afa61b

@ -0,0 +1,18 @@
# Flac
`flac` - short for Free Lossless Audio Codec - is a audio codec without
compression losses.
On most distributions it is bundled together with the tagging software
`metaflac` and other auxiliary tools in the `flac` package.
## Splitting Flac file according to cue file
An easy way to split flac files according to a cue file is using
`cuebreakpoints` and `shnsplit`.
On most distributions they are in a package with the same name.
The following line of shell command splits a flac file according to a cue file.
The `-o` tag specifies the output file format.
```sh
cuebreakpoints '<cue file>' | shnsplit -o flac '<audio flac file>'
```

@ -21,8 +21,13 @@ This way you don't have to search for your CDs all the time.
- [Exact Audio Copy](https://www.exactaudiocopy.de) for windows can rip music
and automatically tag it with the help of a list of databases.
- [metaflac](https://linux.die.net/man/1/metaflac) for linux is a programm
- [metaflac](./linux/flac.md) for linux is a programm
to edit the tags of flac files from the command line.
It is bundled in the `flac` package for debian and arch based systems.
- [MusicBrainz Picard](https://picard.musicbrainz.org/) for linux is a
graphical user interface for tagging files of many different formats.
## Working with flac files on Linux
If you are on a Linux system and have flac files to work with visit
[the flac entry](./linux/flac.md).

Loading…
Cancel
Save