We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tag = stagger.read_tag(song) print(tag) for key , value in tag.items(): print(key,value)
tag = stagger.read_tag(song)
print(tag)
for key , value in tag.items():
print(key,value)
WOAF WOAF('http://www.xxxx.com/mp3/alan-walker/alone.html') WOAR [WOAR(url='http://www.xxxx.com/mp3/alan-walker/alone.html')] WXXX [WXXX(encoding=0, description='', url='http://www.xxxx.com/mp3/alan-walker/alone.html')]
How can I edit the url in FileURL, ArtistURL, UserDefinedURL tags? How to use alternative? Accoding to https://sno.phy.queensu.ca/~phil/exiftool/TagNames/ID3.html
In my Python script tag.album tag.title tag.artist tag.genre tag.comment work well.
But error with tag.fileurl tag.artisturl tag.userdefinedurl
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tag = stagger.read_tag(song)
print(tag)
for key , value in tag.items():
print(key,value)
How can I edit the url in FileURL, ArtistURL, UserDefinedURL tags?
How to use alternative?
Accoding to
https://sno.phy.queensu.ca/~phil/exiftool/TagNames/ID3.html
In my Python script
tag.album tag.title tag.artist tag.genre tag.comment work well.
But error with
tag.fileurl tag.artisturl tag.userdefinedurl
The text was updated successfully, but these errors were encountered: