Skip to content

Album tag not updated for WAV files when using Taglib-sharp 2.3.0 #367

Description

@clixmods

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

  1. Load a WAV file using TagLib.File.Create(path)
  2. Update its Tag.Album as shown above
  3. Save the file
  4. 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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions