Difference between revisions of "CUE Splitting"
(Created page with "This article describes how to split audio file basing on CUE file. ==Installation== Probably you need this bundle: pacman -S cuetools shntool flac wavpack mac mp3info vorbis-t...") |
|||
Line 1: | Line 1: | ||
+ | [[Category: Audio/Video (English)]] | ||
+ | [[Category: HOWTOs (English)]] | ||
+ | |||
This article describes how to split audio file basing on CUE file. | This article describes how to split audio file basing on CUE file. | ||
Line 20: | Line 23: | ||
cuetag.sh file.cue *.mp3 | cuetag.sh file.cue *.mp3 | ||
to copy tags from CUE to MP3. cuetag.sh supports FLAC, OGG and MP3 tags. | to copy tags from CUE to MP3. cuetag.sh supports FLAC, OGG and MP3 tags. | ||
+ | |||
+ | ==References== | ||
+ | * [http://en.wikipedia.org/wiki/Monkey%27s_Audio What is APE?] | ||
+ | * [http://en.wikipedia.org/wiki/Cue_file What is CUE?] | ||
+ | * [[Convert Any To Mp3]] | ||
+ | * [[Rip_Audio_CDs]] |
Revision as of 09:50, 16 February 2011
This article describes how to split audio file basing on CUE file.
Contents
Installation
Probably you need this bundle:
pacman -S cuetools shntool flac wavpack mac mp3info vorbis-tools
Splitting
cuebreakpoints file.cue | shntool split file.ape
or
cuebreakpoints file.cue | shntool split file.wv
it produces .wav files
Then you probably want to convert them into OGG or MP3. See Convert Any To Mp3 for example.
Tagging
Use
cuetag.sh file.cue track01.mp3 track02.mp3 track03.mp3 track04.mp3
or
cuetag.sh file.cue *.mp3
to copy tags from CUE to MP3. cuetag.sh supports FLAC, OGG and MP3 tags.