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 ...
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
45 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 ...
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
50 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 ...
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 ...
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
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
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
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 ...
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 ...
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
28 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
63 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 ...
1
vote
1answer
124 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 ...
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
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) ...
-9
votes
1answer
66 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 ...
0
votes
1answer
153 views

mp3 file length isn't shown correct

I'm trying to convert a WAV file into MP3 file using LAME (win7,vs2010,c++). I found this code: convert wav to mp3 using lame The convert works fine, but when i'm trying to open the file using ...
0
votes
0answers
14 views

WAV header conversions

So I'm working with a specific API for Skype called Skype4Py. It outputs WAV files with a specific form of header (noted below). It only takes a WAV file with that header as input, so I need to figure ...
-2
votes
2answers
41 views

mp3 and wav files play choppy / too fast after ftp transfer [closed]

So I use lame to convert my files and they play fine on the machine. I used to scp them to another server and they would still play fine. I started doing ftp, but un0converted wav files and the ...
0
votes
1answer
62 views

Writing Wav Files of Unknown Length (Java)

I am trying to add a feature to some audio processing software I have written. My software already captures sound from a microphone input, processes it in real time, and sends the result to a ...
3
votes
1answer
49 views

wav file to flac not working

we are trying to use javaFlacEncoder to convert a wav file to flac. the call succeed and created a file. but the file has no audio content at all. code is very simple as : val flacEncoder = new ...
1
vote
2answers
98 views

How to encapsulate raw uLaw or aLaw samples so they can be easily played?

I am debugging a bit of code that processes an RTP voice stream in uLaw or aLaw format. I want to capture the samples that pass through my code and store them into a file. That is easy enough. My ...
2
votes
2answers
182 views

How do I write RIFF chunk data to a WAV file that was made with NAudio?

How do I write RIFF chunk data to the end of a WAV file? Yes, that's right, to the end of a WAV file. Why? Because that's the way the old program I'm replacing did it and the integrating programs are ...
2
votes
1answer
119 views

How to remove noise from wav file? [duplicate]

I am actually mixing two wav files using the simple equation (a+b)/2 where a and b are the samples from the two wav files.This is fine and I am able to listen the audio from both files at the same ...
0
votes
3answers
88 views

Converting audio samples into an audible file format

I've been trying to convert a huge amount of data (about 900 MB) to an audible file format for a few days now. I've been given a .dat file containing 900 millions floating-point samples (one per line) ...
1
vote
1answer
46 views

Replacing WAV header

So here is what I've got: The problem that I face requires me to take a specialized header from WAV1 , and put it as the header for WAV2, in order to make WAV2 work with the API that I'm using. ...
0
votes
1answer
38 views

.WAV file –where is list of all codecs Format IDs?

.Wav file serves as a container for numerous audio formats, as explained in [2]. Audio format is defined with 2 bytes, for example MP3 has "Microsoft Audio ID: 0x0055" (see [3]). I need to search a ...
1
vote
1answer
103 views

weird ticking noise in wav file

I'm recording audio into a wav file and also stream the same audio to the speakers (c++, vs2010, win7). when i hear it in the speakers i can hear the audio clear, but when i write it to a wav file i ...
1
vote
1answer
115 views

Create 32bit float wav file in python?

I want to create 32bit float WAV files in Python (2.x). While "standard" WAV files usually use int, many professional audio applications process (and save) audio data as float. The standard wave ...
1
vote
2answers
253 views

Playing multiple wav files in C#

I have an app that I need to play a wav file when a key or button pressed or clicked, I use the SoundPlayer class but when i try to play another wav file at the same time the one that was playing ...
4
votes
4answers
236 views

Java resample .wav soundfile without third party library

Is it possible to resample a .wav file from 22050 khz to 44100 khz in java without the use of any third party library? Maybe using AudioInputStream? edit: since it seems that without a third party ...
2
votes
1answer
166 views

Java ogg to wav conversion

I have the following code snippet: File file = new File(sourceFile); AudioInputStream in = AudioSystem.getAudioInputStream(file); AudioInputStream din = null; AudioFormat baseFormat = in.getFormat(); ...
2
votes
2answers
81 views

How do I write a multi-frequency audio file?

I am trying to write an audio file with tones from 440hz to 600hz. The file should start at 440hz and then play each frequency (in increasing order) for 1 second, ending at 600hz. I've come up with ...
0
votes
0answers
185 views

Downsampling .wav data array from 44.1 khz to 8 khz java

So for a lab in school I am supposed to downsample a 44.1 khz wav file (either in 8 or 16 bits per sample, stereo and mono) to a 8 kHz wav file. So far, I have read the initial file and put each part ...
0
votes
0answers
42 views

WAV file input with Skype4Py

Why doesn't Skype4Py's inputdevice change work with some types of WAV files? I recorded a file using Skype4Py's outputdevice and that is the only one that works even when the stats are identical on ...
0
votes
0answers
27 views

Where to get sc110wav.h? [closed]

I needed to know from where I can get sc110wav.h file for audio processing of .wav files in C. I would highly appreciate it, Thanks in advance :)
0
votes
0answers
112 views

wav sound file in python: one channel as sound, and one channel on display

In Python 2.7 I want to play a stereo WAV file. One channel has to be actually played (so as a sound through the speaker), but the other channel needs to be displayed on screen (so no sound from the ...
4
votes
2answers
266 views

Extract Fast Fourier Transform data from file

I am building a tool which is supposed to run on a server and analyze sound files. I want to do this in Ruby as all my other tools are written in Ruby as well. But I am having trouble finding a good ...
0
votes
1answer
137 views

How to play a wav file in Ruby?

What is a good way to play an audio file from Ruby that is wav format? OSX or Ubuntu... Ruby 1.9.3
-1
votes
1answer
78 views

Playing a sound with javascript [duplicate]

I have a link in my html. Like this: <a href="#" class="sound">Click</a> When you click on this button. Then a sound will play. But how can i make that with javascript / jquery. This is ...
0
votes
0answers
100 views

Python WAV analysis

I'm writing a program that allows me to detect an answer machine off a skype call. I can output the data to a wav file, and I was wondering if anyone knew how I could preform the following task: Once ...
0
votes
4answers
822 views

Play .mp3 in Java

I know this question has already been asked on this site before, but my question deviates from it a little. I want to play a .mp3 file without using external Java libraries such as javafx. Is this ...
0
votes
1answer
211 views

Loop audio files using .wav format in java

i am trying to loop an audio file but when i've tried the other various methods available, my music doesn't play. My basic code is: import java.io.*; import sun.audio.*; public class PlayMusic { ...
0
votes
1answer
238 views

sampling wav files in to get amplitude at a specific time

i am wondering if there is any way to cycle through a .wav file to get the amplitude/DB of a specific point in the wav file. i am reading it into a byte array now but that has no help to me from what ...
1
vote
2answers
170 views

What is a good tool for programmatically playing multiple audio files at the same time in C# [closed]

I need something that will allow my program to play several audio files (.wav and/or .mp3) at the same time. It would be ideal if I could simply pass a file path to some method, and it will play that ...

1 2 3 4 5 8