Python : I want to know the frequency of a wav file per millisecond
I understood my earlier question but this just happened
How do I find the frequency of a wav file 开发者_如何学JAVAper millisecond ???
import wave
f = wave.open( 'test.wav' )
f.getframerate()
Look at the docs.
精彩评论