Tagged Questions
44
votes
2answers
882 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 ...
9
votes
3answers
497 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
133 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
104 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
185 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
675 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
238 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
2k 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
2answers
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
2k 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
58 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
124 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
179 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
176 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 ...
3
votes
1answer
932 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
427 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
528 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
3answers
51 views
Java audio input inconsistencies
I've been working on a guitar tuner Java application for quite some time and have finally managed to get the pitch (fundamental frequency) detection to accurately determine the fundamental frequency ...
2
votes
2answers
127 views
Java Multi-threaded sound crash
I'm working on a game project in Java in which I need to be able to play multiple sounds at the same time in real time. I've implemented a sound system that generates new threads to play ...
2
votes
1answer
42 views
java midi latency
I´m trying to make a java application that is able to play notes on the computer after detecting a midi device.
Once I get the desired midi device I´m seting the receiver to which the device´s ...
2
votes
1answer
46 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
46 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
62 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
233 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
84 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
171 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
140 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
30 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
46 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
3answers
365 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
303 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
120 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
206 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
237 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
584 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
239 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
639 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
280 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
497 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
1k 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
10k 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
0answers
13 views
How to create a Java Soundbank programmatically
I want to create a small soundbank programmatically with my own samples and play them through the standard Sun JDK Midi Synthesizer.
A already read they are in Beatnik format, but I can't find the ...
1
vote
0answers
17 views
Use ALSA pcm outputs via the Java SoundSystem
I have a sound card with multiple outputs and use ALSA to map them to 2 separate stereo channels. The configuration works fine and allows me, for example with speaker-test to play audio on them.
I ...
1
vote
4answers
43 views
Write mp3 file to disk while playing in Java
I have an application playing remote MP3 files over HTTP using the JLayer/BasicPlayer libraries. I want to save the played mp3 files to disk without re-downloading them.
This is the code using the ...
1
vote
2answers
42 views
Using the java.sound API
I was looking into the Java sound API and noticed that it allows us to play audio files. I have two questions. Given an audio file, how can we use javax.sound to play the audio file at any random ...