Open
Description
Hello,
First, thank you for your work on Taglib-sharp
I encountered an issue while trying to write metadata to audio files using version 2.3.0. The following code works correctly for most formats (e.g. MP3, FLAC), but not for WAV files:
Tag tag = tagFile.Tag;
tag.Title = musicData.Title;
tag.Performers = musicData.Artists;
tag.AlbumArtists = musicData.Artists;
tag.Track = musicData.Track;
tag.Disc = musicData.Disc;
tag.Album = musicCollection.Name;
After saving the file, the album name (tag.Album) does not appear to be updated when viewing the file’s properties in Windows Explorer (right-click > Properties > Details tab).
Steps to Reproduce
- Load a WAV file using TagLib.File.Create(path)
- Update its Tag.Album as shown above
- Save the file
- Check the file’s properties in Windows (Explorer > Properties > Details) — the album field remains empty or unchanged.
Let me know if this is a limitation of the WAV format support, or if additional configuration is required.
Metadata
Metadata
Assignees
Labels
No labels