.wav

C# - .WAV Playback Randomly High Pitch

For some reason, when a WAV file is played back using the snippet below, it randomly plays back screwy, like a high pitch noise. It doesn't happen all the time, just randomly. It seems to happen more often when it is played back more frequently. The WAV properties are below along with the code snippet I am using. WAV Properties: Bit...

How do i get a .wav sound to play ? [Android]

Im making an app, and i want it to make a sound when a activity is opened , the sound file is in R.raw.sound_file , if someone could do some example code to make my app play a sound that would be great :) ...

Playing a .wav sound file in JPanel/JFrame using Java (Swing)

I need some code example on how I would use a filepath from a harddrive location to then play a .wav sound file when opened in swing GUI. I don't need it to show a play button, or pause or stop. I just want it to play when I select the 'Sound' option from my 'Files' in my window (I know how to do that already, no need to explain that). ...

Help with .wav hexadecimal...

Hello, I just want to find out -to expand my knowledge on hexadecimals... And I'm wondering how .wav files convert to hex... I have a hex editor, I open them and mess around with the hex: I understand that the first few are file extension and file bitrate etc. But I want to learn which hex values write a sound? Like what gives a sou...

How to play multiple .wav files simultaneously in delphi

I wish to multiple .wav files simultaneously in delphi. When I open and plat the first things are fine. However the second one causes a error when it tries to open. It would appear that i can only use one media player at a time.... is there any way around this what do i do? ...

how to decode audio steganography using Matlab

i have already wrote the decode coding in Matlab but i know it is wrong because i cant extract hidden message which is .wav from the cover audio, also in .wav format. there are few problems n i cant detect the problem. if the hidden message is text, it easy compared to audio.. that is why i need ur help. function varargout = gui(varargi...

Alternative for DWORD in objective c?

I am trying opening a audio file(.wav) and retrieve the raw data. I got the below code from the link. When I am trying to implement the code DWORD is not supported in Objective c. Please help me out in implementing the code.Please help me out. FILE *fp; fp = fopen("sound.wav","rb"); if (fp) { BYTE id[4]; //four bytes to hold 'RIFF'...

data is null when reding from the .wav file in iphone?

I am trying to read the .wav file and give the raw data as input to the FFT algorithm.I have used the following code to read the .wav file. char ChunkID[4], Format[4], Subchunk1ID[4],Subchunk2ID[4]; int ChunkSize,Subchunk1Size, SampleRate, ByteRate,Subchunk2Size; short AudioFormat, NumChannels, BlockAlign, BitsPerSample; short *Data; /...