如何在 Ubuntu 19.10 上安装 DR14 T.meter

如何在 Ubuntu 19.10 上安装 DR14 T.meter
  • 在哪里可以找到官方的 deb 包?

  • 如何满足依赖关系?

DR14 T.meter 是一个免费的开源命令行工具,用于根据 Pleasurize Music Foundation 发布的离线计量器中使用的程序计算音乐的动态范围。

这个工具可以方便地测量你的音乐有多响,并了解一张高质量的专辑总是有一个很好的动态,它也有助于理解所谓的音量战争

答案1

官方资源

DR14 T.meter 官方网页
DR14 T.meter 官方 DEB 包(当前版本 1.0.15)
GitHub 上的 DR14 T.meter 源代码


在 Ubuntu 19.10 上安装

# Dependencies from Ubuntu Repositories
sudo apt install lame flac vorbis-tools faad dh-python python-scipy python-numpy

# DR14 T.medter can draw spectrograms and other graphs using python-matplotlib
# If you plan to use this (really not sexy results) feature, the package will be required
# Optionnal :
sudo apt-get install python-matplotlib

# python-support is required, not available on Ubuntu repos
# but can be found on the Ubuntu Launchpad
wget "https://launchpad.net/ubuntu/+archive/primary/+files/python-support_1.0.15_all.deb"
sudo dpkg -i python-support_1.0.15_all.deb

# Now lets DL and Install dr14tmeter
wget "https://downloads.sourceforge.net/project/dr14tmeter/dr14tmeter-1.0.16/dr14tmeter_1.0.16-1_all.deb"
sudo dpkg -i dr14tmeter_1.0.16-1_all.deb

# Downloaded deb files can be deleted
# rm dr14tmeter_1.0.16-1_all.deb python-support_1.0.15_all.deb


更好的选择:PIP 安装

使用 python 3 和 pip 3

# use 'pip -V' and 'whereis pip' to select pip python 3.x version

sudo -H pip install numpy scipy
sudo -H pip install DR14-T.meter


用法

# Basic
cd ~/Music/An/Album
dr14_tmeter ./

# Compute multiple folders, sort result
cd ~/Music/An/Artist
find * -maxdepth 0 ! -path . -type d -exec dr14_tmeter -a -t t -o ./ {} \;

相关内容