0
votes
0answers
9 views

High quality Audio to Standard Audio Quality using Java Xuggler

I am trying to use Xuggler to convert High Quality Audio (24 bit, 96khz, 4608Kbps) to Standard Quality Audio (16 bit, 44.1khz, 1411Kbps). I've done a fair bit of searching to try and find out why it's ...
0
votes
1answer
15 views

How to read audio stream that our system (PC soundcard or speakers) is playing in java

I am trying to play audio stream which is read from audio playing in another system. Could please tell me the how to read the audio bytes that our PC is playing audio currently. Thanks & Regards ...
-4
votes
0answers
54 views

How to loop a sound in Java?

EDIT: Actually it can be done with an if statement @statueuphemism fag. try { File fl = new File("C://Users//angelo//Desktop//liver.au"); String st =fl.getPath(); InputStream in = new ...
0
votes
1answer
28 views

Android sound only plays once

I was making an app in java for android, and whenever a button is clicked, a sound plays. It works fine but pressing the button once makes it play, and then pressing that button or any other button ...
2
votes
0answers
19 views

Linux and multiple audio lines in Java

I am trying to open several SourceDataLines in Java, and while it works on my Windows PC, it gives an error on my Raspberry Pi (soft-float Raspbian Linux) "line with format PCM_SIGNED 22050.0 Hz, ...
0
votes
0answers
13 views

Xuggler - Converting 24 Bit Audio to 16 Bit Audio

I'm having trouble using Xuggler to convert from high quality audio (24 bit, 96 Khz, 4608kbps) pcm to standard quality audio (16 bit 44.1khz, 1411kbps). I seem to get a fairly generic error "failed to ...
1
vote
2answers
39 views

What is the format of the data you can write to a SourceDataLine?

In java you can create a SourceDataLine like so: AudioFormat af = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100.0, 16, 1, 2, 44100.0, false); SourceDataLine sdl = ...
0
votes
2answers
22 views

Additive White Gaussian Noise Java in dB [closed]

I am trying to add AWGN to my audio file. I convert my wav file to byte array. I am trying to add 10dB AWGN to this array. In matlab there is imnoise which adds AWGN to image. In java is there any ...
0
votes
1answer
13 views

Hot to get mp3 file duration with mp3spi?

i want to get the duration of the following mp3file with mp3spi: http://www.thapps.net/recordings/troporocks.mp3 I got only the following properties mp3.crc=false mp3.copyright=false ...
0
votes
4answers
63 views

Clip not playing any sound

Well, the title says all, I tried playing a wav file using javax.sound and nothing is happening. I have tried many different files without any luck. public static void main(String[] args) throws ...
0
votes
1answer
28 views

gwt-voices - wav file not playing

I followed this gwt-voices quickstart https://code.google.com/p/gwt-voices/wiki/GettingStarted to create and run simple gwt-voices project. My problem is that the sound is not played when I run my ...
1
vote
2answers
47 views

Impossible to play several sounds when I pressed several Jbuttons

I have three buttons in my java program that can play three different sounds. Look at my code: import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.io.File; import ...
0
votes
0answers
33 views

Mute ALL Sound in Java SWT (Browser Widget)

i have a Java SWT Application with the Browser Widget. The Browser Widget starts a Webstream (swf file), but i want to mute it "in app". (Cant change flashparameters in the url to mute it there)... ...
1
vote
2answers
38 views

JSyn, siren sound using oscillator fed/controlled/inputInto/daisy-chainedTo by another oscillator and a constant…and generating more than one sound

I have been trying to follow the example here, but it is not working, and I have not been able to find any other sources: [ http://www.softsynth.com/jsyn/tutorial/osc_control.php ][1] As far as I can ...
0
votes
0answers
7 views

javax.sound throwing serato audio plugin error and after deleteing serato still having problems

Below is the original error I was receiving when running my java program that only plays a sound. I'm sure that it works I tried it on a different computer, but for some reason the problem still ...
-3
votes
0answers
23 views

how to set title of file when done recording sound? [closed]

I want to make a sound recorder app that saves the file as mp4 with custom title. Meaning when the sound recorder is stopped with button "Stop" I want it to prompt a dialog and ask you to put a name ...
0
votes
0answers
19 views

Grabbing playlist urls from sites?

My current class is located below, i'm just wondering if there's any way for me to grab a URL from a site that has a playlist of music and use that instead of having to keep a .wav file in my project ...
0
votes
0answers
29 views

getAudioClip(getCodeBase(), …), what do I have to fill in?

I'm a freshman and start studying Programming. I want start with this example. import java.applet.*; import java.awt.*; import java.awt.event.*; public class MyApplet extends Applet ...
2
votes
1answer
33 views

Process/record multiple audio input streams in Java

Working on a project requiring the analysis (speech to text) and recording of up to 10 real-time audio (microphone) input streams simultaneously and separately. I'm most comfortable with Java, so my ...
-4
votes
0answers
22 views

Audio Visualization from Existing Files [closed]

I'm working on a project that tries to visualize the waveform of an existing file and displays it on the screen. I found this code ...
0
votes
2answers
38 views

Java Android DC Audio Out

I want to put a controllable DC voltage out the audio jack of an android device. My current solution is to create a 1 second array containing the PCM info for the waveform to be output (a flatline in ...
0
votes
1answer
14 views

Huge latency while playing sampled sound javax.sound.sampled

I have a working soft-synth, which outputs and plays samples correctly, however I have a huge latency, about one second. My code is based of an article found here: ...
-2
votes
0answers
22 views

How to add multiple .wav or .mp3 files to Java program?

I am writing a program mimicking the game show "Don't Forget the Lyrics" where a song will play once a button is pressed and the song will play. I will need to add approximately 15 music clips that I ...
0
votes
1answer
44 views

Java AudioClip not working

My wav sound won't play even though my code is based on a working exemple. I don't know where lied my errors. I found this code exemple on the internet: import javax.swing.*; import java.awt.*; ...
0
votes
1answer
31 views

How do i pause a clip? Java

I have a music player that works perfectly fine but i want to add a play/pause button. I have set the button up and all that but i don't know the code to actually pause the clip. Here is my code: ...
0
votes
0answers
28 views

SIP, JMF: Stream local stored audio file from Android via RTP to computer (audio-straming in java)

I want to send a local stored .wav file from the Android emulator to the local pc (where vlc should receive the stream). The audio file is copied on the sdcard of the emulator and exists. This is ...
0
votes
0answers
12 views

JavaFX specific Audio Output

i have a little problem with JavaFX and the Java Sound API. I want to use 2 outputs of the computer at the same time (USB-Headset and normal boxes). Its no problem to get all the outputs with the ...
0
votes
1answer
48 views

Android buffer size and frequency

I generated sine wave and make a sound using Source data line. The sampling rate is 44100, and block size 441. If I play 0.1 second, then generate 4410 short sine wave and make a sound like below. ...
0
votes
0answers
16 views

Read with javax.clip sound recorded with android.media.AudioRecord

I have recorded sound from my Android device with the following configuration: final int sampleRateInHz = 44100; final int channelConfig = AudioFormat.CHANNEL_IN_MONO; final int audioFormat = ...
3
votes
1answer
84 views

Concatenate MP3s in Scala / Java

I'm trying to concatenate mp3s in Scala, although I'm actually using mainly Java libraries. So far I've put the requisite stuff on my CLASSPATH ( see here: ...
3
votes
1answer
65 views

How to play an mp3 file in java

I am trying to play a song (mp3 file) in java. I have been looking around for a few hours now and none of the ways I found worked properly. public void play() { String song = "song.mp3"; ...
0
votes
2answers
66 views

How do you add music to a JFrame?

import java.awt.*; import javax.swing.*; public class TestFrame1 { public static void main(String[] args) { JFrame frame = new JFrame("Test Frame 1"); frame.setSize(200, 100); ...
0
votes
0answers
24 views

Is it possible to record sound from the TRRS jack?

From what I've read it doesn't seem possible to record from anything past the mic: http://developer.android.com/reference/android/media/MediaRecorder.AudioSource.html Ideally I'd like to be able to ...
0
votes
1answer
83 views

Mix two files audio wav on android use short array

to write my programs, but it does not work so well, I do not know where I was wrong. Before that I used byte [] to store data from wav (it works pretty good but noisy) so I switched to short [], but ...
0
votes
2answers
66 views

How to convert short array to byte array? [duplicate]

I am working with audio, I saved audio data on short array. I want to convert it to a byte array to store the wav file. I don't know convert short[] to byte[]. Can you help me. Thank you very much.
0
votes
1answer
40 views

High frequency audio on Android [closed]

I recently started playing with AudioTrack on Android and came across some issues playing tones I am generating. If i switch from a sinusoidal with a frequency of 18kHz to a sinusoidal with frequency ...
0
votes
1answer
84 views

How to remove noise from .wav file after mixed?

I have read the manual from this link but still can not solve your problems. After mix two wav files using code I get a wav file (music.wav on sdcard) but play it as noise. I really do not know how ...
0
votes
0answers
35 views

Android stream live audio recording to headphone jack out?

I have a nice Java/Android class that does voice recording via the microphone. (Reference: https://github.com/nonameentername/soundtouch-android/blob/master/src/org/tecunhuman/ExtAudioRecorder.java) ...
-2
votes
0answers
26 views

Looking for a Java sound manipulation library~ [closed]

I'm working on a program which seeks to have a few sound-editing features, a little like Audacity. I am looking for a library/API of some sort, in Java, which has the following features: loading ...
1
vote
1answer
59 views

Java - Unsupported Audio File Exception

I'm trying to add sound to my java game... I'm playing Sultans of swing at runtime: static String WHOOSH = "res/WHOOSH.WAV"; static String SULTANS = "res/DireStraits_SultansOfSwing.wav"; ...
0
votes
1answer
45 views

eclipse does not find sound path

In this code in = new FileInputStream(getClass().getResource("/sonidos/inicio.wav").toString()); Eclipse said that: java.io.FileNotFoundException: ...
2
votes
0answers
89 views

Thread continues to run after run() method

I have an issue with playing sound in my game. When the Thread that handles the sound playback exits it's run method it doesn't terminate/end/stop. I know it's this method that causes the problem, ...
0
votes
1answer
44 views

Sound issues in jar file

I have a very weird issue I cant fix. I'm currently making a game and I want sound in the game. It is supposed to be run as a jar file and the game works perfectly fine when running it from eclipse. ...
0
votes
2answers
67 views

Problems decoding streamed mp3 data using JLayer

Im trying to use the JLayer java lib to decode an mp3 data stream. I have a callback which is called asynchronously when the next chunk of mp3 data has arrived from the network. Each chunk that ...
-1
votes
0answers
30 views

Playing .wav file in java

I am newish to java programming and I don't know much about the API or useing sound files in my programming. I have logic down and basic GUI but the java API confuses me I know how to get the sound ...
0
votes
1answer
25 views

Loading Sounds With LWJGL and Slick-Util

I'm creating a basic game, and I can load images fine. Now, I'm trying to load sounds but I keep getting NullPointerExceptions. I'm 100% sure the path is correct, I've tried loading more then one ...
0
votes
0answers
63 views

Jain Sip/Nist: trying to make sip call and transfer audio

I want to make an audio call using the jain sip library. So I added the jar files to the build path and read the shootist example ...
0
votes
1answer
46 views

clip.isRunning() not working

I am trying to make the background music for a game. For some reason, after the song is played for the first time it won't play again. What am I doing wrong and how can i fix it? I know i can use ...
0
votes
0answers
15 views

Java Clip Not Rewinding Properly?

I'm not even sure if the problem is that it's not rewinding properly. I have a Sounds enumerator/class which lets me load all sound effects and then play them at will, and in my game, I initialize ...
0
votes
1answer
37 views

mediaplayer play sound too loud

i've written my code so that when an event occurs, it plays an mp3, but when this happens, the sound is very loud, and it cannot be made lower with smartphone's buttons... i just did MediaPlayer ...

1 2 3 4 5 27