Skip to content

Instantly share code, notes, and snippets.

@ayancey
Created June 2, 2015 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayancey/0d001a2d60e67c82d300 to your computer and use it in GitHub Desktop.
Save ayancey/0d001a2d60e67c82d300 to your computer and use it in GitHub Desktop.
Upwork Code
from mutagen.mp4 import MP4
audio = MP4("Did You.m4a")
print "Artist: " + audio.tags['\xa9ART'][0]
audio.tags['\xa9ART'] = "Someone Else"
audio.save()
audio = MP4("Did You.m4a")
print "Artist: " + audio.tags['\xa9ART'][0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment