Docu review done: Mon 03 Jul 2023 16:39:52 CEST

kid3

General

kid3 is as well as easytag an audio tag manipulation tool and its based on kde and comes which quite some dependencies.

pros: way better userinterface as easytag and there is a kid3-cli package to have a command line interface as well.

kid3-cli

For example you can set with this command the file name as the title tag:

works for the following file naming schema:

[0-9]_<pert>_<of>_<title>.mp3
$ for f in *mp3 ; do kid3-cli -c "set Title \"$(sed -E 's/^[0-9]+_//g;s/_/ /g;s/.mp3//g' <<<"${f}")\"" ./$f ; done

It will replace all underscores with spaces and removes the track number at the front