Hello, I have been trying to use the ID3tool to organize a list of MP3 files in a windows bat file. I have completed it in bash and I'm trying to convert to batch right now. Anyway, here is my problem:
I'm trying to get the album name for the mp3 file, but when I echo the name I get a blank line back.
echo.> name0.mp3
id3tool "name0.mp3" -a "the Album" -r "the Artist" -y "2001"
set name=id3tool name0.mp3 | grep Album
echo %name%
I could not verify if the album name is correct on the mp3 itself (like I can in linux by just looking at the properties), therefore it is possible I'm not creating it correctly. Or perhaps grep does not work absolutely like the linux version (getting Album may not exist in a windows mp3 file the same way).
I appreciate your help, thanks.