切分cue文件初体验

  |   0 评论   |   0 浏览

背景

有一个音乐碟,格式为 cue + wav。期望切分为多个mp3文件。

初体验

下载

配置BREW镜像

export HOMEBREW_API_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/api"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
export HOMEBREW_PIP_INDEX_URL="https://pypi.tuna.tsinghua.edu.cn/simple"

安装

brew install shntool

使用

  1. wav 转 flac
flac CDImage.wav CDImage.flac
  1. flac切分
shntool split -t %t -f CDImage.cue -o flac CDImage.flac -d .

参考

  1. linux 音频文件切割_linux下通过CUE分割APE、FLAC、WAV无损音频
  2. Homebrew / Linuxbrew 镜像使用帮助