-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for tags that aren't explicitly supported #25
Comments
It's hard to do as the tags are mapped between audio formats, and some (like ID3) are very particular about what's allowed and how they should be formatted. I'm certainly open to adding specific additional fields like the above. |
If for example the below Tags are present/set in the source ...
after conversion (no matter what Encoder/TagVersion/TagEncoding)
not NULL, not Empty -> "0" It seems like it's not setting them, because "TrackCount" is also set to "0".. |
There is no way its setting the Disc and DiscCount fields at all. What are you using to read the tags? Can you attach the file in question? |
Sometimes there are multiple discs (volumes). Track number is given within of the volume, not of total. |
Yes, i see that these have a disk # recorded in them. Currently, AudioWorks will strip those when re-writing the tags. I am going to address this in v1.1 by expanding the known tag dictionary. An alternative would be to simply save and restore unrecognized tags verbatim, but i'm not sure i want that feature - I like that AudioWorks re-writes the tag from scratch, as it can correct mistakes. Also that wouldn't help in a transcoding scenario. |
Hi,
If I issue
Get-AudioFile '.\test.flac' | Export-AudioFile LameMP3 .
, tags that aren't explicitly supported are not carried over, "Disc number" and "Total discs", for instance. Nor are they visible in the metadata property of a TaggedAudioFile object.Wouldn't it be a good idea to support all tags, including non-standard ones?
The text was updated successfully, but these errors were encountered: