I heard a lot from people who are both anime-fan and works in anime publishing that, they are actually non-ironically excited about it.
I personally wouldn’t touch it, just like the anime, not because they are bad, but because they are like 2000 episodes.
I dunno, I normally use my bash script + ffmpeg to convert batch flacs to mp3s
#!/bin/bash cd "${1}" for subdir in *; do cd "${subdir}" for input in *.flac; do echo ${input%.*} ffmpeg -i "${input}" -ab 320k -map_metadata 0 -id3v2_version 3 "${input%.*}.mp3" && rm "${input}" done cd .. done
Then i’d just run my
script.sh [directory that contains flac]
you might want to remove&& rm "${input}"
if you don’t want it to delete your flac files automatically.