Python Mutagen: add cover photo/album art by url?
问题 Using mutagen, I am able to add normal metatags such as title , artist , and genre however when I try to add an image via a url, it doesn't work. from mutagen.mp4 import MP4 from mutagen.mp4 import MP4Cover from PIL import Image import urllib2 as urllib import io, sys, getopt #url is defined elsewhere audio = MP4(url) #clear previous meta tags audio.delete() #get album picture data cover ="http://cont-sv5-2.pandora.com/images/public/amz/5/2/9/7/095115137925_500W_488H.jpg" fd = urllib.urlopen