Tagged Questions
The wave tag has no wiki summary.
4
votes
2answers
588 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
5answers
1k views
Detect a specific frequency/tone from raw wave-data
I am reading a raw wave stream coming from the microphone. (This part works as I can send it to the speaker and get a nice echo.)
For simplicity lets say I want to detect a DTMF-tone in the wave ...
4
votes
1answer
919 views
Generate Sine Wave between 10 and 20000Hz using SoundPool
I attempted to generate a Sine Wave using AudioTrack initially. The result was not satisfactory. I then moved to the Soundpool class. I used Audacity to create audiofiles of 1 second and then modified ...
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
185 views
Mathematica doesn't solve wave equation when given boundary conditions
Still new to Mathematica syntax. When I do:
DSolve[{
D[u[x, t], {x, 2}] == (1/(v*v))*D[u[x, t], {t, 2}],
u[0, t] == 0,
u[l, 0] == 0
}, u, {x, t}]
it just returns what I entered
...
3
votes
2answers
779 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 ...
3
votes
1answer
512 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 ...
3
votes
1answer
851 views
change the pitch of a wave file in Android?
Can somebody tell me how to change the pitch of a wave file in Android?
3
votes
4answers
285 views
How authenticate Google wave gadget viewer on Appengine?
Imagine I want to create game "Rock-paper-scissors" for Google Waves.
I am thinking to implement it as a Wave Gadget.
The idea is simple: all participants send their decisions to my cloud
app (it is ...
3
votes
3answers
5k views
Any good C/C++ DSP library?
Which DSP library in C/C++ would you recommend? I will need it for real-time embedded systems. It'd be great to have sound signal processing accompany too, but not a mandatory. If you have knowledge ...
2
votes
4answers
229 views
Software to convert audio to MIDI
Does any one know if there is good software to perform conversion from (wave or mp3 or other known format) to MIDI?
I understand that conversion from audio file to MIDI is a very complex process. I'm ...
2
votes
4answers
172 views
Playing an arbitrary sound on Windows?
How do I, say, play a sound with a given amplitude and a given frequency makeup (say, consisting of frequencies 2 kHz and 3 kHz) natively on Windows (32-bit and 64-bit, up to Windows 7)?
(By natively ...
2
votes
4answers
591 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 ...
2
votes
2answers
775 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 ...
2
votes
1answer
1k views
How to create a wave STREAM out of raw audio samples in C#?
The title is actually the question!
Thank you.
2
votes
2answers
1k views
Reading writing WAV/RIFF Tags
I'm writing a simple audio recording utility which I want also to be able to tag the resulting files with meta data. It's pretty easy to find libraries to tag MP3 files with ID3 tags, but I'm more ...
2
votes
6answers
219 views
Need a library that generates WAVE from Midi
I have about 80 compositions written in MIDI and I want to convert them in to WAVE using a sound library. So they can be played on all computers and sound the same. Is there a library that can ...
2
votes
4answers
956 views
Google Wave as code repository and IDE?
Is it possible to write a Google Wave plugin that turns it into an IDE for programming? With such an extension, Google Wave would be a replacement for Eclipse etc., and it would naturally be a code ...
1
vote
2answers
117 views
Sine Wave Sound Generator in Java
What's the simplest way to generate a sine wave sound at any frequency in Java?
A sample size more than 2 bytes would help, but it doesn't really matter.
Thanks
1
vote
2answers
143 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
1answer
121 views
help using SDL library to play a raw sine wave generated using sinf function
I am trying to generate sound tones of various frequencies, by creating sample data using the sine function and playing using SDL.
I am using
buffer[sample] = 32767 * sinf( 2 * PI * sample * ...
1
vote
1answer
124 views
Lossless reading from mic
I'm using NAudio (but it applies to reading directly) to capture microphone wave data. It seems that if my app is busy it drops/skips some input data from the mic.
I've set the reading thread to top ...
1
vote
4answers
518 views
Convert .wav file to binary and then back to .wav?
I'm doing a project in java which requires me to encrypt a wave file. So, is there a straight forward process to convert a wave file into binary and back? I'll be applying an encryption algorithm on ...
1
vote
4answers
230 views
Parsing Through Wave File with BinaryReader
In .NET Assembly mscorlib System.IO namespace, I am using ReadInt16() method to loop through audio data bytes and dumping signed integer values into a text file. How does one interpret the two values ...
1
vote
2answers
34 views
A good program for editing code with another person on another computer
What's a good program to edit code, or the same document at the same time with another person through the internet. I need something where a friend and I can edit the same document at the same but ...
1
vote
1answer
118 views
simulation error in verilog
my code for the design block and the testbench compiles, however when i simulate i'm not getting the correct output. Can anyone tell me where i'm going wrong in my code?
Here is the code for ...
1
vote
1answer
219 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
2answers
538 views
C# NAudio playing sine wave for x milliseconds
i am using NAudio to play a sinewave of a given freq as in this post:
http://mark-dot-net.blogspot.com/2009/10/playback-of-sine-wave-in-naudio.html
I just want the sound to play() for x milliseconds, ...
1
vote
0answers
524 views
Implementing Audio Steganography using WAVE files [closed]
Can anyone help me out in the method to read WAVE file for implementing LSB based audio steganography? I want to hide text behind WAVE file. I plan to use JAVA.
1
vote
0answers
359 views
Saving files using Carrierwave without forms
I have 2 models - Album and AlbumImage.
Each album has album images associated with them, and they are uploaded via the AlbumImageUploader class using Carrierwave.
Now I want to select an album ...
1
vote
2answers
163 views
Can you re-use buffers with Windows wave audio input?
I'm using the Windows multimedia APIs to record and process wave audio (waveInOpen and friends). I'd like to use a small number of buffers in a round robin fashion.
I know that you're supposed to ...
1
vote
4answers
713 views
C++ sin wave formula for pogo stick jumping
I need to create a pogo stick that jumps across the screen in arcs. I was thinking the best way to do this would be to move it on a sin wave. If the top of the wave is 1, the ground is 0 and the ...
1
vote
2answers
367 views
Which API should I use for playing audio on Windows?
There are many ways of playing sounds on Windows. Which are the differences, advantages and disavantages of each method?
I know there are at least 5 methods:
1991 WinMM.dll/mmsys.dll PlaySound
1995 ...
1
vote
0answers
561 views
Convert Recorded sound in iphone from one format to another say wav to mp3
I am trying to record some audio and convert them to other sound formats. I am using AVAudioRecorder class to record and these are the recording settings I used..
NSDictionary *recordSetting = ...
1
vote
2answers
348 views
Help required with audio in MATLAB
I'm trying to write an .m file to extract energy features from an audio track but I seem to be having trouble in its implementation:
% Formula for calculating RMS
[f, fs, nb] = wavread('Three.wav');
...
1
vote
2answers
447 views
how to convert sound wave to midi in c#
Does anyone know how to convert an analog sound wave to a MIDI file?
I know that differs from WAV to MP3, but that's not important for now. I only want to learn the basic logic of the conversion. If ...
1
vote
1answer
151 views
How to compare two wave data?
I got data measurements from image. I mean profile scan data.
(image intensity values that are taken along one line)
And what I want is to get data from another image's line and compare them together. ...
1
vote
2answers
440 views
How to make a simple voice recorder in pcm format?
i created a simple voice recording using wav format. my problem is i wanted it to save as PCM format using Tbass components form http://www.un4seen.com. My compiler is delphi. or convertion from ...
1
vote
1answer
729 views
How to play a pure PCM raw stream with C#?
I was looking into System.Media.SoundPlayer and NAudio, and AFAIK they only play WAVE streams. The WAVE file is composed of the pure PCM data plus a format header.
I don't want to provide this header ...
1
vote
5answers
296 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
2answers
76 views
Video Synthesis - Making waves, patterns, gradients
I'm writing a program to generate some wild visuals. So far I can paint each pixel with a random blue value:
for (y = 0; y < YMAX; y++) {
for (x = 0; x < XMAX; x++) {
b = rand() % ...
1
vote
1answer
351 views
C++ boost wave, scoped macro
Is it possible to have scoped macros using custom defined macros through boost wave?
I know it should a possible with C++0x however I am working with regular C++.
If it is possible, can you provide ...
1
vote
1answer
488 views
Why do I get this error “EMCIDeviceError” when opening some wav files in my program
Hey I have this program that has been working fine until I tried to open this one wav file? Not sure what the problem is or that I understand it? Do I need to find a new component to use for this ...
1
vote
3answers
574 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 ...
1
vote
1answer
321 views
Silverlight onLoad event not fired inside Google Wave
I am creating a wave gadget base on Silverlight 3. It all works great. Problem is that I want to add some functionality when SL control get loaded. So In "Object" definition of SL, I have added a ...
0
votes
0answers
26 views
WaitHandle.WaitAny in Streaming Buffers (Direct Sound)
I am trying to play a wav file with streaming buffers using direct sound. i have set a buffer size and updated the first buffer. I also set 2 notifications but I am having trouble in the ...
0
votes
0answers
19 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
49 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
31 views
Wave file modification using java
I am currently trying to write a program in which i have to process a .wav file, i need to process the data in the wave file.
My main aim is to extract the data from currently existing file, create a ...