Download presentation
Presentation is loading. Please wait.
1
Audio Chapter 17 - Student
2
(c) 2005 by Elizabeth Sugar Boese Audio Files Java can play the following audio types: .au (Sun Audio) .wav (Windows Wave) .aif or.aiff (Macintosh AIFF) .mid (Musical Instrument Digital Interface (MIDI) .rmf Note: mp3 is NOT supported in the Java API. However, There are libraries you can download and use Note: wav files from your CDs are HUGE! Won’t run well – only use small WAV files
3
(c) 2005 by Elizabeth Sugar Boese Audio AudioClip clip; clip = getAudioClip( getCodeBase( ), audioFilename ); clip.play( ); There are three methods we can call on our AudioClip play play the sound file once through loop play the sound file continually stop stop playing the file getCodeBase works same for images as audio files
4
(c) 2005 by Elizabeth Sugar Boese Audio import java.awt.*; import java.applet.*; import javax.swing.*; public class AudioPlay extends JApplet { String audioFilename = "mySounds.mid"; AudioClip ac; public void init( ) { ac = getAudioClip( getCodeBase( ), audioFilename ); ac.play( ); }
5
(c) 2005 by Elizabeth Sugar Boese Audio To have sound clip loop: get an AudioClip call the loop( ) method import java.awt.*; import java.applet.*; import javax.swing.*; public class AudioPlay extends JApplet { String audioFilename = "mySounds.mid"; AudioClip ac; public void init( ) { ac = getAudioClip( getCodeBase( ), audioFilename ); ac.loop( ); }
6
(c) 2005 by Elizabeth Sugar Boese Audio: Need for stop( ) See Example Each button starts an audio file playing If the previous one isn’t stopped first, then the new one plays on TOP of the other one This is usually not desired However, some applications want this technique (see example of Singing Horses on Internet at: http://svt.se/hogafflahage/hogafflaHage_site/Kor/hestekor.swf
7
(c) 2005 by Elizabeth Sugar Boese stop method import java.awt.*; import java.applet.*; import java.awt.event.*; import javax.swing.*; public class LoopAudio extends JApplet { String audioFilename = "happyDaze.wav"; AudioClip ac; public void init( ) { ac = getAudioClip( getCodeBase( ), audioFilename ); ac.loop( ); // loop instead of play } public void stop( ) { if( ac != null ) // can't stop it if it isn't running, check first ac.stop( ); } Stop playing audio when user leaves the applet: Write a stop method
8
(c) 2005 by Elizabeth Sugar Boese Summary Supported audio file types AudioClip Methods on AudioClip play loop stop Need for stop( ) method
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.