https://bugs.kde.org/show_bug.cgi?id=454437
--- Comment #4 from Urs Fleisch <uflei...@users.sourceforge.net> --- You can find a development snapshot Kid3 git20220528 in https://sourceforge.net/projects/kid3/files/kid3/development/ where I have implemented 'get ratingstars' and 'set ratingstars' for kid3-cli. Note however, that not all your whishes come true: - You still can only set full stars, not half stars or other fractions. If you need it more fine grained, you can still set the internal values using 'set rating <internal-value>'. - If you use `kid3-cli -c "set ratingstars 2" *` this will not work correctly when files with different tag formats are included by `*`. The reason is by design: When a frame is added or edited on multiple files, it is only created once and then pasted into the remaining files, so this will only work when using ratingstars with files having the same tag format. In other cases, you should write the tags separately, e.g. using `for i in *; do kid3-cli -c 'set ratingstars 2' $i; done`. -- You are receiving this mail because: You are watching all bug changes.