Tagged Questions
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
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 ...
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
527 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 ...
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
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
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
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
638 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
496 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
1answer
36 views
how can i create virtual microphone driver by using Java?
how can i create virtual microphone driver by using Java?
My problem is to create a program that work like virtual microphone device for let the another program like skype,msn to read sound input ...
1
vote
2answers
56 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
71 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
40 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
74 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
107 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
72 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
39 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
vote
2answers
238 views
Sine Wave Sound Generator in Java
What's the simplest way to generate a sine wave sound at any frequency in Java?
A sample size more than 2 bytes would help, but it doesn't really matter.
Thanks
1
vote
1answer
82 views
javax.sound.sampled how does it work?
I am trying to play a sound in Java.
So far it is going well, thank you, but I have a problem understanding how does this work.
I wrote a function that does the playback:
private static void ...
1
vote
1answer
68 views
mark/reset exception during getAudioInputStream()
I posted a fix of a problem (explained below) but haven't been able to confirm if it solves the problem. Could someone with Java 7 try the out the following Applet and report back? It would be MUCH ...
1
vote
2answers
119 views
Play and Seek Audio File in java
I used this class to play my Wav file.
Its very good but How to start my wav file on some position (KB or second)?
auline.start();
int nBytesRead = 0;
byte[] abData = new ...
1
vote
3answers
284 views
How can a Java application play a sound clip?
The following is a link to the most likely explanation I've seen, but I still have questions.
How can I play sound in Java?
I'll quote the code here:
public static synchronized void playSound(final ...
1
vote
1answer
171 views
Play mp3 file using pjsip
I am working on a project where I need to play audio files over VOIP channel. I am using OpenSource phone (SFLphone). I would like to know how to play an MP3 audio file over VOIP channel.
Application ...
1
vote
1answer
579 views
How to stop a music Clip in Java?
I am working with some classmates on a game, we have programmed quite everything but the music until now. The music.java class is posted below.
We have a problem stopping our sound, so I need a way ...
1
vote
2answers
464 views
Increase playback speed of sound file in java
I'm looking for information on how I can increase the playback speed of a sound file using Java and it's sound API.
I'm currently using a clip and an AudioInputStream to play back the file, but I'll ...
1
vote
2answers
298 views
How to have the user choose an audio file and play it in Java
I want to be able to make either a GUI or console application where the user clicks a button to select an audio file from their computer (of a compatible format) and it plays, and as I'm completely ...
1
vote
2answers
382 views
echo cancellation for known sound sources (java + linux)
I'm trying to make a speech recognition "ignore" it's own output (using a text-to-speech-system) and therefore wanna use an echo canceller. I actually "know" the tts-output and I can even store it as ...
1
vote
4answers
1k views
Java - removing headers from .wav
I'm reading a .wav file into a byte array with the following code.
AudioInputStream inputStream =
AudioSystem.getAudioInputStream(/*my .wav file */);
int numBytes = inputStream.available();
...