I have only recently started encoding in FLAC and found out the hard way that having ID3 tags in FLAC files can cause problems with some players/applications. I also used EAC. EAC will add ID3 tags to FLAC files by default. So you need to manually deselect the ID3 tag option in EAC so that it writes no tags to your files. You then need to tag your tracks with some other tagger.
Now. To remove ID3 tags without also removing your FLAC tags (if you have them) is another problem.
There are a couple of methods that I discovered that works.
1.
Mp3tag will do it by the following method. Open Mp3tag, and go to Tools > Options > Tags > Mpeg and tick the box beside ID3v1 and ID3v2.
Now load up some tracks, select them, and right click on the tracks and choose "Remove Tag". This will remove all Tags from your tracks. Now press the Undo button. Only FLAC tags will be restored.
I found that the only part of your FLAC tag that is not restored is the Album Art.
2.
Tag is a command line tool for tagging and untagging audio files.
I found that this tool will remove all traces of both ID3v1 and ID3v2 tags without touching FLAC tags by using the command line below.
TAG.EXE --remove --force FLAC *.flac
If you add --recursive to the command, it will work in all sub-folders.
TAG.EXE --recursive --remove --force FLAC *.flac
I made a batch file to do the job for myself.
NOTES:
I recommend that you test any method with a copy of one of your tracks before attempting to remove ID3 tags from numerous tracks.
I also found that Mp3tag does not display ID3v1 tags in FLAC files even if they are there.
Tag will display all your tags using:
tag *.flac
or
tag filename.flac
XMPlay will also display all tags by going to Track Info > Message or pressing F2.
I have only recently started encoding in FLAC and found out the hard way that having ID3 tags in FLAC files can cause problems with some players/applications. I also used EAC. EAC will add ID3 tags to FLAC files by default. So you need to manually deselect the ID3 tag option in EAC so that it writes no tags to your files. You then need to tag your tracks with some other tagger.
Now. To remove ID3 tags without also removing your FLAC tags (if you have them) is another problem.
There are a couple of methods that I discovered that works.
1. [url=http://www.mp3tag.de/en/]Mp3tag[/url] will do it by the following method. Open Mp3tag, and go to Tools > Options > Tags > Mpeg and tick the box beside ID3v1 and ID3v2.
Now load up some tracks, select them, and right click on the tracks and choose "Remove Tag". This will remove all Tags from your tracks. Now press the Undo button. Only FLAC tags will be restored.
I found that the only part of your FLAC tag that is not restored is the Album Art.
2. [url=http://www.synthetic-soul.co.uk/tag/]Tag[/url] is a command line tool for tagging and untagging audio files.
I found that this tool will remove all traces of both ID3v1 and ID3v2 tags without touching FLAC tags by using the command line below.
TAG.EXE --remove --force FLAC *.flac
If you add --recursive to the command, it will work in all sub-folders.
TAG.EXE --recursive --remove --force FLAC *.flac
I made a batch file to do the job for myself.
NOTES:
I recommend that you test any method with a copy of one of your tracks before attempting to remove ID3 tags from numerous tracks.
I also found that Mp3tag does not display ID3v1 tags in FLAC files even if they are there.
Tag will display all your tags using:
tag *.flac
or
tag filename.flac
[url=http://www.un4seen.com/]XMPlay[/url] will also display all tags by going to Track Info > Message or pressing F2.