I have been creating an MP3 tag editor with Python 3.7 and Mutagen on a Windows 10 PC. I would like to write to the URL frame WFED but it does not respond. I have been able to successfully update another URL frame, WXXX using the code below.
The code below works for WXXX
new_url = unicode("http://url.com").encode('raw_unicode_escape').decode("utf-8")
tags.add(WXXX(encoding=0, url=new_url))
The code below does not work on WFED
new_feed = unicode("http://url.com").encode('raw_unicode_escape').decode("utf-8")
tags.add(WFED(encoding=0, url=new_feed))
Can anyone provide any guidance on how I can write to WFED?