So, did you parse your ID3 tags with a regex looking for repeated strings?
Because I really hope you didn’t do all of that manually.
I already have a playlist with everything in it (created with make and find, naturally), and since I store MP3s as /root-dir/artist/album/title, that serves as a first-approximation inventory. So all I had to do was
perl -ne '($f=$_)=~s,.*/,,; print if $f=~m{(w{3,})(W*1){2,}}' everything.m3u
I also note that no one has mentioned Mmm Mmm Mmm Mmm.
So, did you parse your ID3 tags with a regex looking for repeated strings?
Because I really hope you didn’t do all of that manually.
I already have a playlist with everything in it (created with make and find, naturally), and since I store MP3s as /root-dir/artist/album/title, that serves as a first-approximation inventory. So all I had to do was
I also note that no one has mentioned Mmm Mmm Mmm Mmm.