gpt4 book ai didi

linux - Linux 中的 MP3 重采样

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:03 25 4
gpt4 key购买 nike

今晚我正在处理我的音乐收藏。我想为我的 Zune 将我的 MP3 的大量选择重新采样到 192Kb/s。我知道这样做的明显方法是使用 lame 的递归函数在 192 处编码 MP3 - 但 lame 不维护 ID3 标签!

有谁知道另一种选择会保留 ID3 信息

谢谢大家的时间/帮助!

最佳答案

您可以使用 id3 标记工具,例如 id3v2首先保存 mp3 的那些标签。只是一个演示来说明

for mp3 in *mp3
do
id3v2 -l "$mp3" | while IFS=":" read -r tag info
do
case "$tag" in
TYER*)
echo "year: $info"
year="$info" #save year info
;;
TALB*)
echo "album: $info" #save album info
album=$info
;;
esac
done
lame <options> "$mp3" temp #temp is output file
id3v2 -A "$album" -y "$year" temp
mv temp "$mp3"
done

关于linux - Linux 中的 MP3 重采样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2482299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com