i've searched a lot, but could not find anything useful..
I have a m4a file, and i want to open it...what should i do? i've tried the obvious
>>> q = open('file.m4a').read()
>>> len(q)
6989886
>>> print q[:10000]
>>>
it prints a blank line! i've tried to open the file with 'rb' flag but it doesn't work...
thanks ;)