I am developing a python program which can extract ID3 tags of mp3 files. I am using urllib2 for checking MIME type of the URL (if it is audio/mpeg), after that I need to find information about this MP3 file.
Problem is, I dont want to load that Mp3 file completely in my PC, I just want to extract ID3 tags? so is it possible to extract them without downloading MP3 file completely because downloading will slow down my process?
Please suggest something.
Thanks,