Tagged Questions
4
votes
2answers
679 views
AVAudioRecorder doesn't write out proper WAV File Header
I'm working on a project on the iPhone where I'm recording audio from the device mic using AVAudioRecorder, and then will be manipulating the recording.
To ensure that I'm reading in the samples from ...
4
votes
1answer
527 views
Python: Visualisation of waves
I want to programm an easy visualisation of wave propagation.
I tried this with visual python (VPython) but the programm is very slow.
I want to use a 2-D visualisation now.
Which module could you ...
4
votes
4answers
4k views
How to read *.wav file in Python?
I need to analyze sound written in a .wav file. For that I need to transform this file into set of numbers (arrays, for example). I think I need to use wave-package. However, I do not know how exactly ...
3
votes
2answers
860 views
How to write stereo wav files in Python?
The following code writes a simple sine at frequency 400Hz to a mono WAV file. How should this code be changed in order to produce a stereo WAV file. The second channel should be in a different ...
2
votes
4answers
654 views
Wave Simulation with Python
I want to simulate a propagating wave with absorption and reflection on some bodies in three dimensional space. I want to do it with python. Should I use numpy? Are there some special libraries I ...
1
vote
2answers
175 views
how to convert wave file to float amplitude
so I asked everything in the title:
I have a wave file (written by PyAudio from an input audio) and I want to convert it in float data corresponding of the sound level (amplitude) to do some fourier ...
1
vote
5answers
307 views
How do wave files store multiple channels?
I've created two wave files using Audacity. Both have 44100hz sample rate, 32-bit float samples, were saved as WAV (Microsoft) 16-bit signed and contain 1s of silence (according to Audacity). The ...
1
vote
3answers
621 views
What is returned by wave.readframes?
I assign a value to a variable x in the following way:
import wave
w = wave.open('/usr/share/sounds/ekiga/voicemail.wav', 'r')
x = w.readframes(1)
When I type x I get:
'\x1e\x00'
So x got a ...
1
vote
4answers
2k views
What is the easiest way to read wav-files using Python [summary]?
I want to use Python to access a wav-file and write its content in a form which allows me to analyze it (let's say arrays).
I heard that "audiolab" is a suitable tool for that (it transforms numpy ...
0
votes
3answers
48 views
How do I actually play a song on PyAudio?
I looked at this question: pyaudio help play a file
While this question did get answered I never got a clear answer of where to actually put the song file.
This is the code for playing a WAVE ...
0
votes
2answers
250 views
can the python wave module accept StringIO object
i'm trying to use the wave module to read wav files in python.
whats not typical of my applications is that I'm NOT using a file or a filename to read the wav file, but instead i have the wav file ...