Tagged Questions
0
votes
1answer
48 views
Beginner Java Applet — Cannot get sound file to playback
I am working on a beginner java project, and I want a sound to play right when you open the java applet. I have put an .au file in "C:\Program Files (x86)\BlueJ" -- this is where the bluej exe is (I ...
0
votes
2answers
49 views
I am trying to put an audio url in Applet
I am having trouble putting in the audio file url into my app in my getCodeBase method :
public class Audioapp extends JApplet
{
public class Sound // Holds one audio file
{
private ...
0
votes
1answer
48 views
Trying to import an audio file in my java application?
I have followed an tutorial on importing a wav file into an application. I do not know if I have placed the file URL in the right place :
public class Audioapp extends JApplet
{
public class ...
0
votes
0answers
93 views
Java applet with volume controlled audio
I'm creating a virtual radio using java's Applet, and I need a (simple) way to mute an audio stream or being able to play from a position x into the file/stream. This will enable me to get the effect ...
-1
votes
1answer
58 views
Java Web Start sound
I'm modifying an applet to use Java Web Start, using the applet-desc option to launch
the essentially-unmodified code. Everything works great except the sound. This
applet uses only the simplest ...
1
vote
0answers
91 views
Java Applet not playing audio when loaded from webserver
My Java Applet runs correctly when I open the HTML from my local computer, but it does not play when I upload the HTML, JNLP and JAR files to my webserver.
Both of the times that I tried to load it, ...
0
votes
1answer
244 views
Java TargetDataLine and SourceDataLine reopen doesn't work
My setup is as followed:
I have a Java applet running in a browser which records and plays audio.
My problem is:
When I refresh the browser, the SourceDataLine is reopening properly after refresh, ...
-1
votes
3answers
394 views
How to play a WAV in Java, when the WAV is contained inside the JAR
I've been trying to deal with sound on my Applet for a bit now, and Instead of trying all the different methods, what is the best way to play Sound in Java? There are a few requirements:
Needs to be ...
2
votes
2answers
386 views
Java applet sound issues, sound continues on close, and I can't sign the sound files
So I was working on a mini game, and for the first time I added sound to my game, but I ran into two issues, the first is that when I load the applet up in my browser, and I close the tab when I'm ...
4
votes
2answers
431 views
Downsampling audio from 44.1kHz to 16kHz in Java
I have an application that records a speech sample from the user's microphone and uploads it to a server which then does some stuff with it. it seems I must record with the following parameters to ...
2
votes
0answers
1k views
Playing sound with AudioClip in Java - JackRouter error?
I'm relatively new to Java, though now I'm delving a little bit further in here.
I'm creating a program that displays a button of a chicken, and upon clicking this button, an audioclip of the chicken ...
0
votes
1answer
359 views
Correct location for .au sound clip file for Eclipse Java applet
This issue should be simple although apparently I'm missing it.
I have a Java applet with images and a sound clip.
All of the images display correctly and they are in the /bin file.
However, the ...
4
votes
2answers
386 views
ffmpeg for screen capture?
So I have an Applet that captures the screen, and sound from the computer's microphone,
the screenshots are then encoded to ScreenVideo2, and the sound is encoded to AAC.
How can I use ffmpeg to mux ...
0
votes
0answers
183 views
Java application silent when logging in via Windows remote desktop
I have an application that raises notifications using the Java API in order to play a sound clip. There is a problem whereby if I log into my PC remotely and the application is already running it ...
0
votes
0answers
258 views
LineUnavailableException while playing sound in java
I have this slightly altered a sound manager from another question How can I play sound in Java?. Here it is:
public static synchronized void playSound(final String url)
{
new Thread(new ...
0
votes
1answer
284 views
How do I play two sounds at once in an applet using AudioClips?
When I try to play two sounds at once in an applet, it won't work. I'm using AudioClips. Is it even possible to play two sounds at once in an applet?
0
votes
0answers
131 views
Java applet sound in HTML
Just a quick question about a program I've been working on. I've made an applet that has several sounds that play depending on the users input that all work fine when I run it through Eclipse. The ...
1
vote
2answers
515 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
321 views
Applet to adjust system volume
I need to create an applet to adjust windows sound, like mute, increase and decrease volume etc. Is there any API for this? sndvol32.exe opens the volume control. But I can't place it in my web page. ...
0
votes
2answers
244 views
Using microphone to interact with web page
I am looking for advice how to set web pages where user can interact with it using microphone. The aim would be that user can say word and the word would be recorder and the file compared on server ...
0
votes
2answers
1k views
Java AudioClip - no sound, no error
I've read prior issues about java AudioClip and have done my research, yet I still cannot figure out why this
AudioClip does not play. The .wav clip plays fine in Eclipse IDE, it is also in the ...
2
votes
3answers
229 views
Applet size (15 megabytes) too heavy to load?
I would like to know whether 15 mega is quite heavy applet to load?
My main problem are two sound files(.Au) that its weight is about 9 mega bytes.
Anybody has suggestion of how to use mp3 maybe ...
0
votes
1answer
312 views
JavaFX 2.0 AudioClip doesn't play in applets?
Okay,so I made a small game in JavaFX 2.0, and I have a player shot sound which plays each time the player shoots. Works great on desktop, but doesn't play on applet.
I was wondering if anyone could ...
1
vote
0answers
417 views
Losing sound component on refresh
I've written an applet that streams sound data from the server and plays it through the client's computer. I have the client get hold of the speaker line with the following function:
private ...
6
votes
3answers
8k views
Record voice with Java
I want to record voice using a Java application; I guess this will be basically an applet that will run on client side. But I don't have any idea of how to do it... any ideas? Also, I want to play ...
1
vote
1answer
558 views
Can we play audio and video files using Applet?
I need to develop the webpage which plays both audio and video files. And we need to change the controls using arrows like Up, Down, Left and Right buttons to manage the audio or video.
Regards,
...
0
votes
1answer
206 views
What main class should i give in my manifest.mf of a jar file which has an applet without main class?
i am having a applet(not having a main class) and i am having song file (beep.au) and picture file ( a.gif){these 2 files i have used in my applet} and i have created a jar file a.jar which contains ...
0
votes
1answer
321 views
Audio Input to a Java/Processing Applet through Browser?
Is there a straightforward way to do this?
I am working in Processing, and I'm trying to get audio input using the Minim library to create visualizations; this works fine when it's just a Java app ...
1
vote
1answer
440 views
Java: Quickly fade in and out the gain of a javax.sound.sampled.Clip
I want to smoothly transition between two audio clips that are loaded into an array of javax.sound.sampled.Clips in my Java applet. At the moment I stop one clip and start the next but this produces ...
3
votes
3answers
1k views
Soundbank for Java
I am working on a Java applet that uses javax.sound.midi.sequencer to play a MIDI sequence. In order for this to work, the visitor needs to have a soundbank installed on his/her computer. Apparently, ...
5
votes
5answers
1k views
Mute sound in Java Applet
I use a Java applet, which produces unwanted sounds to me.
Mute option in the applet is missing, and it's not possible to rewrite the source code.
I want to hear other(non-JVM) applications' sounds.
...
1
vote
1answer
661 views
In java, making a selective beep sound
I am trying to make several rectangles show up when the applet is started with a couple colors added in...I already have the beep audio file but from what i know, it will play throughout the whole ...
1
vote
2answers
1k views
How to play sounds in Java games?
I'm successfully playing sounds in a Java (1.5) applet game using the following code:
// get an available clip to play it
Clip clip = null;
for (Clip clipTemp : players) {
if (!clipTemp.isOpen()) ...
0
votes
2answers
1k views
Java Applet play sound file has a different effect than Windows Media Player?
I have a Java program that auto dials phone numbers, it can generate sounds to mimic phone keypads, works fine for normal calls, but I encountered a problem when it comes to calling card, it requires ...
0
votes
0answers
400 views
applet to record sound and video
Where can I find a ready made applet that will record audio-video from a microphone and a webcam and the upload it to my server?
Is there a tutorial or any such ready to use applet?
1
vote
1answer
596 views
Simple Java Sound Applet won't work!!! ARG!
import java.applet.*;
/**
* SoundApplet.java - a simple applet that plays the "gong.au" sound file.
*/
public class AppletGame extends Applet
{
public void init()
{
super.init();
...
2
votes
1answer
808 views
voice recording in Ogg format?
I have created a voice recorder applet. The output sound file will be .wav format. I want to use a compressed file format like .ogg. I have the .ogg decoder applet and it plays the audio file ...
0
votes
3answers
936 views
Audio in Java Applet not playing
I am trying to play audio in a Java applet but it is not working. What could be the problem?
EDIT: Besides the limited number of files that Java can play, the problem was that I didn't realize that ...
0
votes
3answers
869 views
Playing audio streams on a web page
I have a list of radio stations, mostly .mp3 and .ogg. I would like to have a player on a web page that could be controlled with JavaScript. Now I use jlgui, but it is somewhat limited.
Do you know ...
2
votes
4answers
393 views
What to replace this java code with?
The following code is used for playing a sound file in my java applet:
public synchronized void play() {
try {
//Here filename is a URL retreived through
...
