I need to remove tags from an mp3 file. I know I'm using another program but if there is anyone who has worked with Tag.exe enough, maybe you could tell me how in the program this is done. I will provide code and help references with this post.
INTERNAL DOCS
Removing tags:
--------------
You can remove all supported tags from files and with ID3v2 version also just
ID3v2 tags.
To remove all tags use command:
Tag --remove <files>
and to remove only ID3v2 tags:
Tag --removeid3v2 <files>
--remove : remove all tags
CODE FROM BATCH FILE I'M USING
for /f "tokens=1-4 delims=/.- " %%A in ('date /t') do (set Dow=%%A&set MM=%%B&set DD=%%C&set YYYY=%%D) C:\Audio\Untagged\removetest\*.mp3 --remove
When I test this it just runs the code above and displays it in the dos window then puts the cursor back on the command line. No other messages or indicators saying if it succeeded or not. Then when I check the mp3 from Windows File Explorer the tags have not been removed.
Any suggestions here?
INTERNAL DOCS
Removing tags:
--------------
You can remove all supported tags from files and with ID3v2 version also just
ID3v2 tags.
To remove all tags use command:
Tag --remove <files>
and to remove only ID3v2 tags:
Tag --removeid3v2 <files>
--remove : remove all tags
CODE FROM BATCH FILE I'M USING
for /f "tokens=1-4 delims=/.- " %%A in ('date /t') do (set Dow=%%A&set MM=%%B&set DD=%%C&set YYYY=%%D) C:\Audio\Untagged\removetest\*.mp3 --remove
When I test this it just runs the code above and displays it in the dos window then puts the cursor back on the command line. No other messages or indicators saying if it succeeded or not. Then when I check the mp3 from Windows File Explorer the tags have not been removed.
Any suggestions here?
Comment