tone跨平台音频标记器和元数据编辑器
tone 是一个跨平台的音频标记器和元数据编辑器,可以转储和修改各种格式的元数据,包括 mp3、m4b、flac 等。它没有任何依赖,可以作为单一的二进制文件下载,适用于 Windows、macOS、Linux 平台。
代码是用纯 C# 语言编写的,并利用 atldotnet 库来提供对各种音频和元数据格式的全面支持。
特点
- 转储音频文件的元数据
- 用不同种类的元数据标记音频文件
设置
Linux / macOS
# linux-arm
wget https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-linux-arm.tar.gz
# linux-arm64
wget https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-linux-arm64.tar.gz
# linux-x64
wget https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-linux-x64.tar.gz
# macos (m1) - not working atm, see issue #6
wget https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-osx-arm64.tar.gz
# macos (intel)
wget https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-osx-x64.tar.gz
# untar
tar xzf tone-*.tar.gz
# install to your $PATH
sudo mv tone*/tone /usr/local/bin/
# test if tone is usable
tone --help
Windows
# download for windows (powershell)
iwr -outf tone-0.1.4-win-x64.zip https://github.com/sandreas/tone/releases/download/v0.1.4/tone-0.1.4-win-x64.zip
# extract tone
Expand-Archive -LiteralPath tone-0.1.4-win-x64.zip -DestinationPath .
# test if tone is usable
.\tone --help
# open directory in windows explorer to manually put tone in your %PATH%, e.g. C:\Windows
start .
评论
