Tagged Questions

44
votes
2answers
865 views

Multichannel USB recording with Java Sound API?

I'm trying to record/process some audio from three usb microphones with Java Sound on Snow Leopard (but can switch to Windows if it fixes things). Problem is, when I try to use the mixer that ...
8
votes
3answers
466 views

Extract human sound from a wav file using java

I am working on a project where I have to extract the human sound from a audio .wav file using java. The audio .wav file may have 3 to 4 sounds like dog, cat, music and human. I will have to ...
5
votes
3answers
109 views

why this code doesn't play the sound file

The code import javax.sound.sampled.*; import java.io.*; public class Tester { static Thread th; public static void main(String[] args) { startNewThread(); while( th.isAlive() == true) { ...
4
votes
2answers
99 views

program to create wavforms

How can I create waveforms for a clip ? What are the concepts behind doing so? I have been trying to make a waveform and have also referred to some links but they seem to be incomplete. Could someone ...
4
votes
2answers
161 views

Understanding the constructor of AudioFormat , AudioInputStream and start method

I have tried writing program that plays a sound file but have been unsuccessful so far. I am unable to understand some parts of the code: InputStream is = new FileInputStream("sound file"); ...
4
votes
1answer
564 views

How to capture sound from microphone with java sound API?

The tutorial http://download.oracle.com/javase/tutorial/sound/capturing.html does not cover how to select microphone. I am enumerating mixers with the following code System.out.println("Searching ...
4
votes
3answers
229 views

Problem with a Java thread that captures sound card data

I have a program which creates a thread that captures data from the soundcard at 48 KHz and writes it to a buffer for collection. The heart of the thread code is as follows .. public void run() ...
4
votes
4answers
1k views

Acoustic echo cancellation in Java

I'm implementing a VOIP application that uses pure Java. There is an echo problem that occurs when users do not use headsets (mostly on laptops with built-in microphones). What currently happens The ...
4
votes
1answer
1k views

Converting the sample rate on-the-fly when reading a WAV file into a samples array with Java

I've got a collection of short WAV files that I would like to process in Java using various digital signal processing algorithms. I need to get an array of int valued samples for this purpose, encoded ...
4
votes
2answers
1k views

Noise in background when generating sine wave in Java

I'm getting a slight distortion (sounds like buzzing) in the background when I run the following code. Because of its subtle nature it makes believe there is some sort of aliasing going on with the ...
4
votes
19answers
5k views

What output and recording ports does the Java Sound API find on your computer?

I'm working with the Java Sound API, and it turns out if I want to adjust recording volumes I need to model the hardware that the OS exposes to Java. Turns out there's a lot of variety in what's ...
4
votes
4answers
4k views

manipulating audio and drawing waveform using java sound in real-time

I am currently developing an application that helps the user to tune his guitar and generate guitar effects. This is in real-time. I've been looking through java applications that could give an idea ...
4
votes
3answers
1k views

How to sample multi-channel sound input in Java

I realised this might be relatively niche, but maybe that's why this is good to ask anyway. I'm looking at a hardware multiple input recording console (such as the Alesis IO 26) to take in an Adat ...
3
votes
1answer
49 views

java sequencer playlist

I currently have a very simple class: public class Music { private Sequence sequence; private Sequencer sequencer; public Music(String music) { try { this.sequence = ...
3
votes
4answers
110 views

cutting a wave file

How can i cut a .wave file using java ? What i want is : when the user presses the button labeled cut it should cut the audio from the previous mark (in nanoseconds) to the current position in ...
3
votes
1answer
168 views

problem in creating waveform. Can't understand the calculations

I'm trying to make up a waveform for a clip tha i pass it during run-time . I have taken help from some links like :link 1 and link 2 but i don't understand the calculation part , when some bit shift ...
3
votes
1answer
811 views

How to detect silence when recording in Java?

How can I detect silence when recording operation is started in Java? What is PCM data ?. How can I calculate PCM data in Java? I found the solution : package bemukan.voiceRecognition.speechToText; ...
3
votes
2answers
394 views

pausing mp3 in java

I'm currently working on a project in which i need to play a background mp3 sound. I managed to do that using the Jlayer library and a piece of code found here However, I needed to add some more ...
3
votes
2answers
492 views

Play variable tone with Java?

Back in my high school Pascal class, I had a fun little program that would take in an integer and then play a tone using the system speaker. The pitch of the tone would vary, based on the int. Does ...
3
votes
4answers
2k views

Java AudioSystem and TargetDataLine

I am trying to capture audio from the line-in from my PC, to do this I am using AudioSystem class. There is one of two choices with the static AudioSystem.write method: Write to a file Or Write to a ...
3
votes
1answer
1k views

how can I wait for a java sound clip to finish playing back?

I am using the following code to play a sound file using the java sound API. Clip clip = AudioSystem.getClip(); AudioInputStream inputStream = AudioSystem.getAudioInputStream(stream); ...
2
votes
1answer
32 views

Audio Clip won't loop continuously

Can anyone point me in the right direction as to why this code will not play this audio clip continuously? It plays it once and stops. final Clip clip = AudioSystem.getClip(); final AudioInputStream ...
2
votes
3answers
36 views

where to place sound files relative to a java project?

This is the first time I've implemented sounds but I can't figure out where to actually place the sounds to play them. I am using Eclipse as my IDE and I've put my sounds in a folder called sounds. ...
2
votes
2answers
48 views

Some Questions About the Java Sound API

I'm relatively new here and to the usage of Java's Sound API and audio programming altogether. I have been wondering if it's possible to do the following things with Java's Sound API: extract the ...
2
votes
3answers
161 views

List input and output audio devices in Applet

I am running a signed applet that needs to provide the ability for the user to select the input and output audio devices ( similar to what skype provides). I borrowed the following code from other ...
2
votes
2answers
75 views

How do I know if I'm on the event dispatch thread?

1.Consider my code is on some line of a JPanel that I have, am I automatically on EDT? 2.Same question for all other classes which are not belong to GUI, JPanels or other view classes, simple ...
2
votes
2answers
127 views

obtaining an AudioInputStream upto some x bytes from the original (Cutting an Audio File)

How can i read an AudioInputStream upto a particular number of bytes/microsecond position ? For example : AudioInputStream ais = AudioSystem.getAudioInputStream( new File("file.wav") ); // let the ...
2
votes
1answer
116 views

concatenate 2 byte arrays and then convert to an audio stream

The following is the code that reads audio data from 2 audio input streams into a byte array. import javax.sound.sampled.*; import java.io.*; class tester { public static void main(String args[]) ...
2
votes
2answers
28 views

making a new audio file without data conversion but of shorter length

Snippet that gets the wanted length from the total length : Clip clip = AudioSystem.getClip(); AudioInputStream ais = AudioSystem.getAudioInputStream( new File( "file.wav") ); clip.open( ais ); long ...
2
votes
1answer
43 views

Do i have to guess the Sample Rate of the sample before starting recording?

This is a code that will attempt to record an audio sample : but i've a not constructed AudioFormat object ( that has been passed to DataLine.Info) because i don't know the sample rate. EDIT I have ...
2
votes
1answer
154 views

forwarding and rewinding audio in xuggler

I have used xuggler to play audio files other than wav,au,aiff. Since xuggler performs audio decoding at low level it is very hard to write a method that both forwards and rewinds the audio being ...
2
votes
3answers
321 views

How can i remove background noise with java, while recording audio in a crowd zone?

When i capture with JavaSound or Third party sound capture tools and record it to a file. Afterwards read the file back to modify it, is there any way to remove the "background noise" with my java ...
2
votes
1answer
272 views

why do i get java.lang.IllegalArgumentException: No line matching interface SourceDataLine supporting format MPEG1L3 44100.0 …

I have set mp3plugin.jar in the run time libraries needed in my netbeans project .But still i get the above exception when i try to play mp3 file.What is the reason for this : import java.io.File; ...
2
votes
1answer
105 views

Why do i get these exceptions while trying to play a mp3 file?

I downloaded JMF MP3 Plugin to play mp3 files in my java program.I included mp3plugin.jar in my project library of netbeans along with JDK. But still i am unable to play mp3 file. When i run my code i ...
2
votes
2answers
183 views

Start and stop sounds in Java

Similar to this question, I would like to play a WAV file in a Java application - however, I would also like the ability to pause, resume, and restart the sound. I'm guessing I can restart by pausing ...
2
votes
2answers
196 views

Capturing speaker output in Java

Using Java is it possible to capture the speaker output? This output is not being generated by my program but rather by other running applications. Can this be done with Java or will I need to resort ...
2
votes
3answers
507 views

Playing Audio File in java Application

Can you please suggest that how can i write a piece that plays a song.? I tried the following snippet but i get the this exception: import sun.audio.*; import java.io.*; class tester { public ...
2
votes
3answers
226 views

Why is my sound lagging?

I'm working on a system of applications for processing sound data. The first application simply reads from a microphone jack and sends the data to the next application. The main loop repeatedly ...
2
votes
1answer
600 views

Pitch detection and change java

I'm french so I'm sorry if you have trouble to understand some of my sentences. Anyways, I saw in some topics that the pitch could be fetected thanks to the Fourier transform but I didn't really ...
2
votes
1answer
268 views

Audio clip getting stuck

I am seeing some strange behaviour with Clip instances in Java. The purpose of the class I am working on is to keep count of the number of Clip instances containing the same sound sample (indexed by ...
2
votes
1answer
474 views

Converting raw bytes into audio sound

In my application I inherit a javastreamingaudio class from the freeTTS package then bypass the write method which sends an array of bytes to the SourceDataLine for audio processing. Instead of ...
2
votes
3answers
964 views

Java playing sounds. Is there a default system sound?

Hi I am trying to write an application that will play morse code. I just wanted to know if there was a default system sound in java like some beep, or do I have to download some sound file from the ...
2
votes
2answers
9k views

Convert audio stream to WAV byte array in Java without temp file

Given an InputStream called in which contains audio data in a compressed format (such as MP3 or OGG), I wish to create a byte array containing a WAV conversion of the input data. Unfortunately, if you ...
1
vote
2answers
40 views

Playing an audio file on JButton press?

I've looked on Google for a while, searching how to play audio files, and most of the sources I found were with using java.applet.*, but I am trying to look for a way I can put it inside my ...
1
vote
1answer
57 views

play sound in java [closed]

I have five wav files. I want to play them serially from a single Java program using sourceDataLine. But my program is not maintaining the proper sequence. Can anyone provide me code segment?
1
vote
1answer
30 views

Changing audio input using Java?

I'd like to modify the audio input stream, the stream that would come from my microphone. I have looked through the java.sound package API, but did not entirely understand it, nor how to modify direct ...
1
vote
1answer
54 views

How to capture audio from microphone and save it in FLAC file format type in Java?

I need to make a simple app in java, that capture some audio from microphone, and save it in file, using FLAC. I found tutorial : ...
1
vote
1answer
64 views

Counting real time audio frequency in java

I have a problem counting voice input frequency from the audio input of my microphone. Can anyone help me with this? I'm supposed to get an audio input from my microphone and count its frequency. ...
1
vote
2answers
61 views

Perform action after end of the sound

I am able to play sounds in my Java Swing application right now usind JavaSound and code from Java play WAV sound file. What I currently want to do is: Play a sound; after the sound is finished I ...
1
vote
1answer
37 views

Why isn't this code playing any sound?

I'm trying to get this to play a sine wave at 440 hz. The constructor gets called, and no errors appear. generate() makes an array of doubles for the sound data, and sends it to process() which makes ...

1 2 3