change-title-id3tool.sh
#!/bin/bash
# johnmeister.com/linux 9 May 2019
# updating id3tag on mp3s for sorting on desk unit and car
#########################################################################################
# example of updating content of id3tags on an mp3:
# id3tool -t "66a_38_Rev_12:1-6" -c 20 -y 2019 -G "Speech" -a "The Revelation of Jesus Christ" -n "bridgechristianfellowshipcom" -r "Rick Crawford" 66a_38_Rev_12v1-6.mp3
#########################################################################################
#
for Y in `ls *.mp3`
do
# id3tool -t "$Y" -G "Classical" -a "collection of classical music" $Y
id3tool -n "created with linux n id3tool" $Y
# id3tool -y 2019 $Y
done
# NOTE: ran the script three different times with different variables.
#########################################################################################
JohnMeister.com
Today's Date:
|