Results 1 to 3 of 3
Thread: Large Wave Files
- 02-18-2011, 07:02 PM #1
Member
- Join Date
- Feb 2011
- Posts
- 2
- Rep Power
- 0
Large Wave Files
I am trying to add a large (1 minute) wav file to a game I am making for my computer class. Any idea how to do this? The following code plays my other wav files, so I know it works, but fails to play the large one that I want.
public static class ALYouAndMe implements ActionListener{
public final void actionPerformed(ActionEvent e) {
YAM++;
if(YAM%2==1){
AudioPlayer MGPStart = AudioPlayer.player;
AudioStream BGMStart;
AudioData MDStart;
AudioDataStream loopStart = null;
try{
BGMStart= new AudioStream(new FileInputStream("youandme.wav"));
MDStart= BGMStart.getData();
loopStart= new AudioDataStream(MDStart);
}catch(IOException error){}
MGPStart.start(loopStart);
}
}}
- 02-18-2011, 10:39 PM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,546
- Rep Power
- 11
What are AudioPlayer, AudioStream etc? Perhaps their documentation suggests limitations (either file size or otherwise).
What happens when you try the static Applet method, newAudioClip()? It's a weird place for such a method, but it exists.
I have no idea whether it plays .wav files, or if it objects to large files (is one minute large?) but it's where I would start.
- 02-18-2011, 10:59 PM #3
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,546
- Rep Power
- 11
fwiw the following is playing a 4min wav file as I type
Java Code:import java.applet.Applet; import java.applet.AudioClip; import java.io.File; class Calc { public static void main(String[] args) throws Exception { AudioClip clip = Applet.newAudioClip(new File("test.wav").toURI().toURL()); clip.loop(); // Ctrl-C to exit... } }Last edited by pbrockway2; 02-18-2011 at 11:06 PM.
Similar Threads
-
Copying large files efficiently
By bayan in forum New To JavaReplies: 2Last Post: 10-27-2010, 05:01 PM -
Playing multiple wave files one after the other
By Pals in forum New To JavaReplies: 4Last Post: 02-26-2010, 03:18 AM -
Compare 2 large files
By bezudar in forum Advanced JavaReplies: 3Last Post: 11-23-2008, 02:18 AM -
OutofMemory while downloading large files through FTP
By deb_santanu in forum Advanced JavaReplies: 0Last Post: 11-13-2008, 01:04 PM -
Need to find large files and folder on the PC. What app needed?
By Cleaner007 in forum Reviews / AdvertisingReplies: 1Last Post: 09-30-2008, 07:06 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks