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

learn more… | top users | synonyms

0
votes
1answer
30 views

Creating a waveform representation with standard library python

I'm creating a waveform representation of a wav file and was curious what the best possible methods to go about this efficiently in python using the standard library. Some audio files could be minutes ...
0
votes
0answers
17 views

C# - mciSendString, any solution to get the buffer (array)?

I'm creating a reader / recorder using MCI through the DllImport of winmm.dll: mciSendString see here. It works for many things, recording, playing, that's pretty cool. I would like to do some ...
1
vote
2answers
50 views

using Naudio to play Stream of Wave

I want to change the bit rate of wave file. so I searched in the net and I figure out that the wave file contain a header which is 44 bytes length , and the 25,26,27 and 28 byte are used to store ...
1
vote
2answers
37 views

Python Wave Library String to Bytes

So basically I am trying to read in the information of a wave file so that I can take the byte information and create an array of time->amplitude points. import wave class WaveFile: # ...
0
votes
0answers
14 views

Trouble with header-declared wave file length from tritonus java sound library

I have byte arrays of encoded sound data, which I can save to individual wav files no problem using the standard AudioSystem.write(input, AudioFileFormat.Type.WAVE, outputFile); Trouble is, like ...
-1
votes
0answers
35 views

adding a seek bar to media player in C#

I'm Developing a simple media player to play WAV File using C#.net Version 4.0 here in the following code I read the WAV File and Increase the speed of it using System; using ...
0
votes
0answers
25 views

Writing WAV file and do speech recognition simultaneously with Kinect (WAVE)

I am working on speech recognition with Kinect. The speech recognition (first activity) and writing the audio stream into a WAVE file by reading it out (second activity) should run concurrent. Each ...
-2
votes
1answer
55 views

changing the sample Bit Rate of WAV File [closed]

I want to changing the Bit Rate of WAV file to speedy up or Slowdown the speech how Can I do this Pragmatically in C# or Java ??
3
votes
1answer
50 views

Multiply audio signals for robot voice C#

I'm trying to get the wave output of .NET SpeechSynthesizer to make the voice sound like robot-ish. After some research, I have found that ring modulation might be a good option to obtain the effect ...
0
votes
0answers
13 views

Record in 8 bit pcm format

I cannot seem to find a way to record a file in 8bit format instead of the standard, which is 16 bit. Now I am having: randomAccessWriter = new RandomAccessFile(filePath, "rw"); ...
1
vote
1answer
25 views

Cannot Figure Out Why Audio File Is Not Playing (Java)

Kind of a noob to coding, but I've been creating Pacman for a computer science class, and for some reason, I cannot get my audio to work. Basically, here is the just of what I have written. public ...
0
votes
1answer
43 views

How to access to L and R channel samples of stereo audio file separately?

Suppose I have 8-bits (mono and stereo) .wav files. When processing of this file I have to declare pointer to array of samples. There is difference between conception of mono and stereo files: there ...
0
votes
0answers
19 views

Is there an existing implementation of the Short-Time Fourier Transformation in PHP?

I've been looking all over for a STFT implementation in PHP, but I can't find it anywhere and I'm not sure I trust myself to create one without making the complexity unnecessarily high. I'm ...
0
votes
1answer
15 views

Why i get NAN value when storing mmioRead result in double?

Why i get NAN value when trying to read .wav file and directly store it sample data in double? Before thinking about using this i was store the sample data in smallint and then convert it to double by ...
2
votes
1answer
27 views

Convert an array of 8-bit values to wav file in PHP

I have an array of 8-bit values which I have received from a microprocessor. I am looking to turn those values into a wav file using PHP. I found some examples, like this or this, that work in Java ...
-2
votes
0answers
47 views

Play and plot wav file in Java [closed]

I am trying to understand the workings of the wav file format. I figured that the best way to go about this would be to plot the spectrum / write a player. I have gone through the following resources ...
0
votes
0answers
25 views

Mixing 2 wav files convert bytes from each wav file to shorts, get average of the shorts and write to output byte array

While going over all questions and answers related to "Mixing 2 wav files", most of the answers suggested - convert bytes from each wav file to shorts, get average of the shorts and write to output ...
1
vote
3answers
46 views

App crashes though I can't understand the reason [closed]

The input file is in.wav. I have to read chunks (succeeded) and to read samples to normalize the audio file... The problem is that it crashes while trying to fing the max and min values of .wav ...
0
votes
2answers
65 views

How to find the size of data (samples) of the .wav file?

I have to normalize .wav audio file. Succeeded to get metadata (the first 44 bytes) from the file (ChunkID, ChunkSize, Format, fmt and so on.) so I can find out how many channels are there ...
1
vote
0answers
29 views

Split Wave audio file at silence [duplicate]

I have a bunch human reading simple sentence (hello world) as a wav file. How can I break the wav file for 2 wav files each contains word (hello and world) by automatically recognizing the gap ...
1
vote
1answer
26 views

Map MIDI notes to waves files?

I'm using NAudio to play MIDI files in my .NET project. I want to play some MIDI tracks (drum loops particularly) so each sound maps to a certain wav or mp3 file. Is that possible? I'm new to MIDI ...
1
vote
2answers
30 views

Playing a certain part of a large wav file

I want to play a certain parts of a wav file. Like playing the first ten seconds and then playing it from 50th-60th seconds and so on. I know how to play a entire wave file in Java using the start ...
0
votes
0answers
17 views

Wav file Experimental compression

So, i have a file of which i know is a RIFF WAVE file. It has format code that tells me it is 2 channels at 48000 samples per second. However, i have not a single clue what compression it could be in, ...
0
votes
0answers
10 views

Getting the same result when reading with stream

I'm trying to read in the 16bit sample values of a .wav file; int DEBUG_TRACKER = 0; for(long int s = filesize; s > 0; s = s - 400000){ int16_t leftsample = 0; int16_t rightsample = 0; ...
0
votes
1answer
39 views

Decrease bitrate on WAV file created with recorderjs

I'm trying to use recorderjs on an app engine site where users upload short audio recordings (say, 1 to a dozen seconds long). I've noticed that the WAV files I'm uploading are much larger than I ...
-1
votes
1answer
62 views

Displaying the result of mmioRead

After locating the data chunk using mmioDescend, then how i suppose to read and display the sample data into for example into a memo in delphi 7? I have follow the step like open the file, locating ...
1
vote
1answer
80 views

How to write .WAV file using WAVEFORMATEX?

I wrote a program that opens wav files and plays them through the console and then modifies the sound and replays it...how do I save a new wav file with the modified sound? so essentially I want to ...
-1
votes
1answer
125 views

Read .wav file using delphi

I now currently try to read .wav file using delphi here is my code : type TWaveHeader = packed record Marker_RIFF: array [0..3] of char; ChunkSize: cardinal; Marker_WAVE: array [0..3] ...
0
votes
0answers
30 views

AVPlayer enablerate distorting wav file?

I am playing a wave file in AVPlayer like this //Creating Data from file then insert that data to the Avplayer NSError *error = nil; NSString * resourcePath = [[NSBundle mainBundle] ...
1
vote
0answers
14 views

Concatenate multiple WAV files using single command, without extra file [migrated]

I want to concatenate multiple WAV files into a single WAV file using FFMPEG. I have used the following command and it generates the required file. Command: ffmpeg -f concat -i mylist.txt -c copy ...
0
votes
1answer
46 views

What Would Happen If a .wav File Was All 1's or -1's?

To my understanding, .wav file is a list of numbers ranging from -1 to 1 (at least, if you are using a java class called WavFile to convert an array into a .wav file, the array must have values ...
1
vote
1answer
56 views

Trying to Split Wav file into two pieces with SoX

I'm trying to split one .wav file into two pieces where there is a few seconds of silence. Based on the documentation I've found, the following should work: sox testfile.wav tester.wav silence 1 ...
0
votes
1answer
71 views

Trouble in finding difference between 2 sound frames in a wav file

I wanted to compare how much two sound frames are similar, so that I can distinguish between them. I am doing this because, usually when we had a video playing and an advertisement comes up, usually ...
1
vote
0answers
27 views

Most lightweight python lib to play WAV files in a particular order? [closed]

I'm looking for a python lib that can load up several WAV files in memory, and then play one after another (a la playlist) with absolutely no gaps in between. Also, if I send the python app a signal, ...
0
votes
0answers
62 views

Sound effects for developers: Free WAVs or WAV maker? [closed]

Does there exist any good source of sound effect WAV files for an iOS app (or any other app in general)? I'm specifically looking for clock ticks and beeps, but a library of many sounds would be ...
0
votes
2answers
75 views

C++ Game Sound Effects [closed]

Is it possible to load in a wav file and play in during a game that's been written in C++ without the use of third party libraries? I mean, is there a small function that can handle this? Some ...
0
votes
3answers
89 views

Playing wav file which has relative path inside project

I have some problems with relative paths and reproduction of wav files. I have this simple code which works perfectly: SoundPlayer player = new SoundPlayer(); player.SoundLocation = ...
1
vote
1answer
123 views

play a raw PCM byte from a wav file

I have a wav file which was encoded with 16-bit PCM, I want to convert it to a PCM short array and play the raw array with audiotrack class. It is what I did: String fileName = "test.wav"; ...
0
votes
1answer
129 views

play wav file in jar - java netbeans

I have got a code for playing wav sound file in java and works perfectly in netbeans IDE but, when i export the project to jar file and run it on another machine, it won't work and show the following ...
0
votes
1answer
58 views

Wav file arrayList. Why does this line not work? Java

I have a string arraylist that goes through this list one by one and its supposed to play the wav file. On this line "AudioInputStream ais = AudioSystem.getAudioInputStream(music(x));" music is not ...
4
votes
5answers
118 views

unknown audio format - where to dig into?

On my Android phone (Philips Xenium W632), I have an option of calls' recording by its own software (without any external programs, this option is turned on in service menu). The problem is that ...
0
votes
0answers
150 views

Manipulate WAV file with Java

I am having trouble on a homework assignment I have to write methods to manipulate a .wav file in Java. i am stuck on how to lengthen or shorten the file. If I shorten the file it should remove every ...
-2
votes
1answer
56 views

Why doesnt this ArrayList work for Wave files? (java)

I'm trying to create code to get wav files into an array list and then for the arraylist to play the files. Why does this code not work? Thanks. public class trackList { public void tracklist(){ ...
0
votes
1answer
34 views

Python - Trying to Get My Sound File To Play On Startup of Application

I have used the following code and I am not sure why it is not working. from PythonCard import model playSound = 1 class MainWindow(model.Background): pass app = model.Application(MainWindow) ...
0
votes
1answer
54 views

turn string of hexadecimal numbers into cmyk reference?

i have a huge file of hexadecimal numbers, from a wav file I opened in a hex editor. Is there a code (i'm using processing) to turn a string of these numbers into a cmyk reference? My tutor mentioned ...
-9
votes
1answer
65 views

Wave File in java- wav as numbers- explain (urgent) [closed]

I need to know what are the numbers means when i convert wav file to binary array.. I understand the first ~44 bytes are the header but how can I interpreter the bytes data?? There is some table for ...
1
vote
1answer
94 views

Convert Mp3 to WAV with naudio without writing on disk. (Stream only)

I want to convert mp3 files to WAV. In DirectX.DirectSound the secondary buffer is supporting only WAV. I am converting the files using naudio and this is working fine. using (Mp3FileReader reader = ...
0
votes
0answers
62 views

Qt wav file header faulty?

I am trying to record some audio by Qt provided QAudioRecorder class. Thus I have looked at the examples provided by Qt especially the audiorecorder. When I use the audiorecorder to record files, the ...
0
votes
0answers
55 views

Waveform for 24/32 bit WAV files

I'm working with WAV files in Java and I created a waveform, but it's only able to show the waveform from a 16 bit file. I create one loop for the samples frames and other for the channels, allowing ...
0
votes
0answers
46 views

Play streamed wave in C#

I'm looking for a solution to play streamed wave in c# with offset playback possible. Our server streams audio and has streaming with offset enabled. Given URL: http://ourserver.com/playback?id=400 ...

1 2 3 4 5 17