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 ;)

link|improve this question

80% accept rate
yes..i wonder to know why it doesnt work.. – Ant Dec 21 '10 at 22:28
What doesn't work about it? – Falmarri Dec 21 '10 at 22:34
What do you mean by 'it doesn't work..'? What's the exact error message? – bgporter Dec 21 '10 at 22:35
there was a comment before mine...however i was talking about read() and why read should not work on audio files – Ant Dec 21 '10 at 23:02
feedback

2 Answers

up vote 1 down vote accepted

Try printing the repr() of the data:

>>> print repr(q[:10000])

If you print the data itself, it may contain control character or other unprintable text, which makes for misleading output. The Python repr() function makes that data readable by escaping the characters as needed.

In the interactive shell, the repr() value of the expression entered is printed if it isn't None. So this would do the same thing:

>>> q[:10000]
link|improve this answer
perfect, it works! thank you ;) – Ant Dec 21 '10 at 23:00
i should need a m4a codec but i asked for this so it's ok :) – Ant Dec 21 '10 at 23:01
feedback

Python Audio Tools ?

link|improve this answer
if i understood it allows you to do a lot of thing but hiding the method; i mean, there is a way to actually open that file to see what's in there? – Ant Dec 21 '10 at 22:30
For that you need at the very least to decode it using an m4a codec of some sort. – William Dec 21 '10 at 22:43
yeah, kinda...any suggest? – Ant Dec 21 '10 at 23:03
Well, yes, but they're written in C. One such can be found at: audiocoding.com But really Python Audio Tools should provide the kind of higher level interface you want. – William Dec 21 '10 at 23:40
feedback

Your Answer

 
or
required, but never shown

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