music-tag icon indicating copy to clipboard operation
music-tag copied to clipboard

Tagging a wave file not working§

Open ben-hearn-sb opened this issue 3 years ago • 2 comments

Hello!

I have just tried using your library and tried to add ID3 tags to a wave file and it does not seem to be working, I am wondering if I am using it correctly for wavs? Is there anything special that needs to be done in order to get this to work with wave files?

EDIT: On further investigation and looking through your test code, I managed to print out the tags on the file. They are there however Rekordbox does not read them in as it should do. What version of ID3 does the library use?

Really good idea with the library, epic initiative :)

def test_tag():
    p = '/Users/benhearn/Music/test_folder/renaming_cells/Harry Wills - Slink .wav'
    import music_tag
    wav = music_tag.load_file(p)
    wav['title'] = 'Slink'
    wav['artist'] = 'Harry Wills'
    wav.save()
    print('done')

ben-hearn-sb avatar Jan 17 '22 17:01 ben-hearn-sb

Thanks for the issue, I believe I am experiencing the same issue. Did you ever find any more info here?

ProfMoo avatar Sep 18 '22 04:09 ProfMoo

No I did not. I ended up using FFMPEG to write and FFPROBE to read the wav file metadata in the end

ben-hearn-sb avatar Oct 10 '22 17:10 ben-hearn-sb