Results 1 to 2 of 2
- 06-15-2012, 02:05 AM #1
Member
- Join Date
- May 2012
- Posts
- 15
- Rep Power
- 0
Can play audio, but can't stop it
For the program I am currently working on, I need to be able to simply press my "Play" button to make audio play and my "Stop" button to make the audio stop playing. The play button works, but for whatever reason the stop button does not. I'm not really sure what's wrong.
Here's the code for the play and stop buttons:
And the code for toggleAudio:Java Code:private void audBtnPlayActionPerformed(java.awt.event.ActionEvent evt) { toggleAudio("test.wav", true); private void audBtnStopActionPerformed(java.awt.event.ActionEvent evt) { toggleAudio("test.wav", false); } }
I'll admit, I don't entirely know what I'm doing here - but It still seems like this should work. Help is much appreciated!Java Code:public void toggleAudio(String filename, boolean play) { InputStream in; AudioStream as; try { in = new FileInputStream(filename); as = new AudioStream(in); if (play == true) { AudioPlayer.player.start(as); } else { AudioPlayer.player.stop(as); System.out.println("Why won't it stop????!"); } } catch (IOException ex) { Logger.getLogger(Auditory.class.getName()).log(Level.SEVERE, null, ex); } }
- 06-16-2012, 07:07 PM #2
Senior Member
- Join Date
- Oct 2010
- Posts
- 316
- Rep Power
- 3
Re: Can play audio, but can't stop it
Hi Lucien,
The problem you have is both in and as are redeclared when the method is called. This means that the object to which the variables are pointing to is actually a new instance and not the same object as before.
To correct this declare in and as as global variables and instanciate these upon initial execution.
Regards.
Similar Threads
-
J2ME, stop play after pressed button
By derata in forum CLDC and MIDPReplies: 3Last Post: 04-20-2012, 12:00 PM -
how to stop audio(mp3)
By shruts in forum New To JavaReplies: 7Last Post: 08-07-2011, 04:19 PM -
Play Audio File
By YapperNico in forum New To JavaReplies: 0Last Post: 12-30-2010, 01:59 PM -
Play audio in the BlackBerry Browser
By javierrebelde in forum Advanced JavaReplies: 0Last Post: 04-30-2010, 07:51 PM -
How do i play an audio clip from a server?
By JavaJenius in forum NetworkingReplies: 1Last Post: 03-08-2008, 06:40 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks