I'm trying to use the mutagen module to read the metadata of an mp3 file. The problem is that the module is expecting a local mp3 file, but my mp3 files are on a remote server.

This is the line in the module that raises an error when I send a remote mp3 URL as the first parameter.

fp = file(f, "rb")

How can I alter this line of code so that it can open a remote file (e.g. http://remotedomain.com/file.mp3) in rb mode?

link|improve this question
+1 to counteract downvote. the question was worded clearly and the OP made an effort. this is what SO is all about, guys. – jcomeau_ictx Jul 1 '11 at 5:03
feedback

2 Answers

up vote 3 down vote accepted
fp = urllib2.urlopen("http://remotedomain.com/file.mp3")

binary mode is default

link|improve this answer
wow, the natives are angry tonight – jcomeau_ictx Jul 1 '11 at 5:07
I +1'ed but dude please make less comments alright? You talk very redundant, that's what you get -1's. – ahmet alp balkan Jul 1 '11 at 5:10
OK, point taken. thanks. – jcomeau_ictx Jul 1 '11 at 5:12
feedback

file() can not be used to fetch arbitrary URLs.

See

http://docs.python.org/dev/howto/urllib2.html

link|improve this answer
+1 for first correct answer – jcomeau_ictx Jul 1 '11 at 5:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.