Tagged Questions

This tag is for questions related to the "Waveform Audio File Format", WAVE, or wav for short.

learn more… | top users | synonyms

23
votes
2answers
2k views

Writing musical notes to a wav file

I am interested in how to take musical notes (e.g A, B, C#, etc) or chords (multiple notes at the same time) and write them to a wav file. From what I understand, each note has a specific frequency ...
9
votes
1answer
229 views

Synch 2 similar audio input (one by file and one by microphone)

i have 2 audio input of a concert. The first is a wav file and the second is taken by microphone in real time. I need play the first file in synch with the microphone input. What library can i use? ...
9
votes
2answers
7k views

How to encode a WAV to a mp3 on a Android device

I'm simplified my question and offered a bounty: What options are there for compressing raw PCM audio data to a mp3 on a Android device. My original post: I'm creating a synthesiser on my Android ...
9
votes
1answer
1k views

How to play non buffered WAV with MediaStreamSource implementation in Silverlight 4?

Background I'm trying to stream a wave file in Silverlight 4 using MediaStreamSource implementation found here. The problem is I want to play the file while it's still buffering, or at least give ...
9
votes
3answers
2k views

How can I convert between midi to wav/mp3 in c#?

I started a small project which includes working with MIDI files. I've been wondering, is there any C# or VB.Net code that peforms that cast between MIDI and WAV files?
9
votes
4answers
6k views

Detect & Record Audio in Python

I need to capture audio clips as WAV files that I can then pass to another bit of python for processing. The problem is that I need to determine when there is audio present and then record it, stop ...
8
votes
2answers
5k views

Using AudioTrack in Android to play a WAV file

I'm working with Android, trying to make my AudioTrack application play a Windows .wav file (Tada.wav). Frankly, it shouldn't be this hard, but I'm hearing a lot of strange stuff. The file is saved ...
8
votes
3answers
2k views

How to extract semi-precise frequencies from a WAV file using Fourier Transforms

Let us say that I have a WAV file. In this file, is a series of sine tones at precise 1 second intervals. I want to use the FFTW library to extract these tones in sequence. Is this particularly hard ...
7
votes
5answers
7k views

Flash based .wav player

Does anybody know of a free/open source flash-based music player that can playback .wav files? I am trying to playback Asterisk recorded calls in a developed console of the Caller CDR table, I am ...
5
votes
1answer
122 views

How would I play a .wav file with a Mathematica program?

I would like to know an easy way to implement a function playWav[filename_String] that plays a .wav file (as a side effect).
5
votes
2answers
115 views

WAV-MIDI matching

let's consider a variation of the "WAV to MIDI" conversion problem. I'm aware of the complexity of such a problem and I know that a vast literature about the more general Music Information Retrieval ...
5
votes
2answers
912 views

Real low level sound generation in C#?

Anyone knows of a sensible way to create an ARBITRARY sound wave in C# and play it back from the speakers? This issue has been coming back to every now and then for years, I always end up giving it ...
5
votes
3answers
959 views

How to join two wav file using python?

I am using python programming language,I want to join to wav file one at the end of other wav file? I have a Question in the forum which suggest how to merge two wav file i.e add the contents of one ...
5
votes
6answers
728 views

Where is a good collection of freely licensed instrument .wav samples?

I require full samples for a variety of instruments. One such site that provides this resource (http://theremin.music.uiowa.edu/MIS.html) is good, but there aren't enough non-classical instruments ...
5
votes
4answers
3k views

Multiple sounds in SoundPlayer in C#.net

hi whatsup? im making a SAMPLER program where each key from 1 to 9 will make a different sound. everything is working great, But.. when i press two (or more) sounds at the same time, the second one ...
5
votes
4answers
617 views

Find an occurrence of a WAV sample inside another WAV?

Is it possible with FFT to find an occurrence of a small wav sample inside of a longer wav, if it is known that that exact sample exists somewhere in the wav (but may be mixed with other sounds)? ...
4
votes
2answers
148 views

Error while decoding/encoding flac to/from wav

I have added LibFlac in xcode project . Then I added decode/main.c from Libflac in my project. I passed infile.flac and run executable of project but it is giving following error decoding: FAILED ...
4
votes
1answer
2k views

Android Streaming Wav Audio Error: MediaPlayer Prepare failed: status=0x1

We are streaming audio via http from ffserver/ffmpeg on Angstrom Linux. The ffmpeg audio codec is PCM signed 16-bit little endian "pcm_s16le". The ffmpeg stream format is "wav". Both of these are ...
4
votes
1answer
221 views

How to divide a wav file into 1 second pieces with Java?

I had a question previously: Reading wav file in Java Firstly, I want to read a wav file with Java and get its bytes to process into an array. Secondly, I will remove the silences of it(this is ...
4
votes
4answers
2k views

Reading wav file in Java

I want to read wav files in Java and I am going to classify them with K-means. How can I read wav files in Java and assign them into an array or something like that(you can suggest ideas for it) to ...
4
votes
2answers
2k views

Saving Microphone Stream to mp3 or wave

I recording sound from Microphone in Windows Phone device. Using Xna.Framework.Audio.Microphone I store the sound in MemoryStream. I can save it to PCM format. However It will be much better to ...
4
votes
1answer
406 views

Is there any way to send audio file to the speech-to-text recognition

I want the Android speech recognition system analysing audio file and not the default incoming voice from microphone. Is there any way to do that ? Thank you.
4
votes
3answers
4k views

Convert byte array to wav file

I'm trying to play a wav sound that stored in byte array called bytes. I know that I should convert the byte array to wav file and save it in my local drive then called the saved file but I was not ...
4
votes
1answer
734 views

SpeechSynthesizer in C# creates wav that has 22kHz… needs to be 16kHz

My C# application needs to covert text to wav file and inject it into a Skype call. The code that creates the wav file is below. The problem is that the file has 22kHz sample rate and Skype accepts ...
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 ...
4
votes
1answer
1k views

Java - downsampling wav audio file

Hi I need to downsample a wav audio file's sample rate from 44.1kHz to 8kHz. I have to do all the work manually with a byte array...it's for academic purposes. I am currently using 2 classes, Sink ...
4
votes
5answers
3k views

WAV file from captured PCM sample data

I have several Gb of sample data captured 'in-the-field' at 48ksps using an NI Data Acquisition module. I would like to create a WAV file from this data. I have done this previously using MATLAB to ...
4
votes
4answers
6k views

How do I use afconvert to convert all the files in a directory from wav to caf?

I have a directory with about 50 wav files that I need to convert to caf, because AudioServicesCreateSystemSoundID() returns an error for some of them (but not all). Here's an example of the command ...
4
votes
3answers
2k views

How do I attenuate a WAV file by a given decibel value?

If I wanted to reduce a WAV file's amplitude by 25%, I would write something like this: for (int i = 0; i < data.Length; i++) { data[i] *= 0.75; } A lot of the articles I read on audio ...
4
votes
3answers
2k views

Mean amplitude of a .wav in C#

Does anyone know a way to get the mean amplitude of a .wav file using C# (even if it means calling an outside command line program and parsing the output)? Thanks!
4
votes
3answers
4k views

Processing Audio Data using Fourier Transforms in Java

I'm trying to process audio data. I'm working with Java. I've extracted the audio data to an array. Now I should pass N data samples to a function that calculates the Discrete Fourier Transform (or ...
4
votes
4answers
3k views

How to edit raw PCM audio data without an audio library?

I'm interested in precisely extracting portions of a PCM WAV file, down to the sample level. Most audio modules seem to rely on platform-specific audio libraries. I want to make this cross platform ...
4
votes
6answers
2k views

How to decode wav, mp3, and/or ogg in .Net/Mono?

I am looking for a cross-platform (.Net and Mono on Windows, MacOSX, and Linux) way to decode wav, mp3, or ogg files such that I can then play the decoded streams through DirectSound or OpenAL as ...
3
votes
1answer
136 views

Correct Media Type settings for a DirectShow filter that delivers Wav audio data?

I am using Delphi 6 Pro with the DSPACK DirectShow component library to create a DirectShow filter that delivers data in Wav format from a custom audio source. Just to be very clear, I am delivering ...
3
votes
1answer
541 views

How to play multiple mp3/wma files at once?

I have the need to play multiple soundeffects at once in my WP7 app. I currently have it working with wav files that takes around 5 megabyte, instead of 500kb when coded in wma/mp3. Current part of ...
3
votes
4answers
2k views

Is there any pure java way to convert .wav to .mp3?

I've struggled a lot with Java but could not combine a working example of Java .wav to .mp3 converter. This converter will be used in a Java applet so it should depend only on libraries written in ...
3
votes
1answer
270 views

How to record from mic and save to WAV file in WinCE with Lazarus?

I'm using Lazarus to build a WinCE application to be run in a PDA/PocketPC. I need to record the voice from the PDA internal microphone for about 10 seconds, and save it to a wav file, but could not ...
3
votes
2answers
3k views

Creating a WAV file from raw PCM data using the Android SDK

I'm trying to use the AudioRecord class to record a WAV file. The problem is that it only supplies the raw PCM data, and if I write it to a file, there is no header information, so it will not play in ...
3
votes
1answer
702 views

Upload a WAV file with Paperclip and store both .wav and .mp3 versions

I have a Rails application where people can use an in browser sound editor to create wav files and upload them to the server. I use Paperclip for handling the sound file upload. I would like to be ...
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
844 views

Creating a fade-in/fade-out function in MATLAB?

I am looking to create a function that could create a fade-in/fade-out function on a .wav file over a period of five seconds. I found this code on the MATLAB forums but it seems the implementation ...
3
votes
4answers
923 views

Opening an audio (wav) file from a MemoryStream to determine the duration

Is there a way, either within the Framework or by using P/Invoke to determine the duration of a wav file that's held in a MemoryStream? I've already had a look at Managed DirectX and another similar ...
3
votes
6answers
3k views

Java - reading, manipulating and writing WAV files

In a Java program, what is the best way to read an audio file (WAV file) to an array of numbers (float[], short[],...), and to write a WAV file from an array of numbers?
3
votes
2answers
1k views

Noise reduction and compression in streaming audio

hope you can help. I am recording audio from a microphone and streaming it live across a network. The quality of the samples is 11025hz, 8 bit, mono. Although there is a small delay (1 second), it ...
3
votes
3answers
464 views

Programmatically convert WAV

I'm writing a file compressor utility in C++ that I want support for PCM WAV files, however I want to keep it in PCM encoding and just convert it to a lower sample rate and change it from stereo to ...
3
votes
3answers
5k views

Embedding wav files in AS3 Flash/Flex project?

The Flash IDE is capable of embedding many types of uncompressed sound files, including wav, and offers optional compression when publishing. However, the [Embed] tag, only seems to allow embedding ...
3
votes
3answers
1k views

Looking for a mouseover sound script

I'm looking for a a mouseover sound script (for button). I plan to use wav sound but it can be another sound format. Those I have found on the net are not compatible with new browser version. I ...
3
votes
3answers
3k views

Android's AMR audio Files to WAV/MP3

I've recorded audio in my Android application in its AMR format and I'd like to convert these to something that I can more easily use, such as WAV or MP3. I've found some online instructions for ...
3
votes
2answers
1k views

How to write wav file with 32-bit float data?

I would like to be able to write PCM wav files with 32-bit floating point samples. This seems to be a valid format since libsndfile claims to support it. However, if I specify in my header a sample ...
3
votes
2answers
892 views

How do I upsample a wav file using AS3?

I am trying to upsample an 8000hz, 16-bit wav file to 11025hz in AS3. At this point, I am not concerned about applying the low-pass filters that I know I will eventually need. I've been referencing ...

1 2 3 4 5 9