← 返回命令列表

Linux command

cuebreakpoints 命令

文件

复制后可按需替换文件名、目录或参数。

常用示例

Extract breakpoints from a CUE sheet

cuebreakpoints [file.cue]

Output in samples format

cuebreakpoints --input-format samples [file.cue]

Prepend 2-second gaps

cuebreakpoints --prepend-gaps [file.cue]

Append gaps to previous track

cuebreakpoints --append-gaps [file.cue]

Output for use with shnsplit

cuebreakpoints [file.cue] | shnsplit -o flac [file.wav]

说明

cuebreakpoints reads a CUE sheet file and outputs the track split points in a format suitable for audio splitting tools like shnsplit. CUE sheets describe how an audio CD is divided into tracks, including exact frame positions. The output is a list of timestamps in mm:ss.ff format (minutes:seconds.frames at 75 fps) representing where each track begins. This information is piped to splitting tools to divide a single audio file into individual tracks. Gap handling options control how the silence between tracks is distributed. Different ripping/encoding workflows may require gaps prepended, appended, or split between adjacent tracks.

参数

--input-format _format_
Input time format: cue (default) or samples.
--prepend-gaps
Prepend track gaps to each track.
--append-gaps
Append gaps to previous track (except track 1 pregap).
--split-gaps
Split gaps between tracks.
--help
Display help.
--version
Display version.

FAQ

What is the cuebreakpoints command used for?

cuebreakpoints reads a CUE sheet file and outputs the track split points in a format suitable for audio splitting tools like shnsplit. CUE sheets describe how an audio CD is divided into tracks, including exact frame positions. The output is a list of timestamps in mm:ss.ff format (minutes:seconds.frames at 75 fps) representing where each track begins. This information is piped to splitting tools to divide a single audio file into individual tracks. Gap handling options control how the silence between tracks is distributed. Different ripping/encoding workflows may require gaps prepended, appended, or split between adjacent tracks.

How do I run a basic cuebreakpoints example?

Run `cuebreakpoints [file.cue]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --input-format _format_ do in cuebreakpoints?

Input time format: cue (default) or samples.