Tagged Questions
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
2answers
874 views
Compare voice wav in android or voice tag ( voice commands ) API
I'm developing an app and I need some way to compare 2 voices if they' match or not, I know that Voice Recognizer is a way to do that but since (i think) it needs to translate the voice into string ...
1
vote
1answer
235 views
Generating .wav Sound Data in Haskell
I'm trying to programatically generate .wav files from a file with the format "Note Octave Note Octave" (e.g. A 4 F# 1) in Haskell using the Data.WAVE library, and I've reached a problem: I can't ...
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
0answers
32 views
Playing Multiple Wav Files Using Directsound without Delay
I need to play multiple wave files using directsound or any other method. My application is similar to this: http://msdn.microsoft.com/en-us/library/ms973091.aspx, where i need to create beats. The ...
0
votes
2answers
63 views
Playing wave files from stream
I have to design a program that plays sounds (from WAV files). I have to create a wav and play it. Once it finishes I have to change the contents of that wave file and play it again. It is like ...
0
votes
1answer
316 views
Soundmanager will not play a sound
function doclick(){
soundManager.createSound({
id: 'mySound',
url: 'http://localhost/htmlshooter/wav/gun.wav',
autoLoad: true,
autoPlay: true,
volume: 100
...
0
votes
3answers
258 views
How To Track No Sound Area In A Wav File?
everyone.
How to track sections without sounds in a wav file?
a small software what I want to develop is deviding a wav file, and it consider a no volume area as a deviding point.
how can a program ...