Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (307)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Sound via J2ME  (Read 862 times)
0 Members and 1 Guest are viewing this topic.
Offline Breen

JGO Visitor



Java games rock!


« Posted 2005-02-24 17:23:06 »

I'm new to developing mobile java app's, and have immediatly hit a wall  Smiley

I'm trying to play a sound from my disk, and through various sources have come to the following
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
        try {
//        Manager.playTone(64,1000,100);
       Player p;
        InputStream is = null;
               
        is=getClass().getResourceAsStream("wmpaud1.wav");
        p = Manager.createPlayer(is, "audio/x-wav");
        p.setLoopCount(1); // Play it once
       p.realize();
        p.prefetch();
        p.start();
        } catch(IOException ioe) {
        } catch(MediaException e) {
        }


Actually, when i change the filename, i get an IllegalArgumentException, so my guess is that the sound is indeed found.  

However, whatever i do, the sound doesn't play, is there an error in my ways?

Thanks Smiley
Breens Jan
Offline davidaprice

Junior Member





« Reply #1 - Posted 2005-02-25 04:50:31 »

You could compare your code with the example in the MMAPI spec, which I seem to remember does just the same thing. I don't have it on this PC though.

Some obvious things come to mind:

  • what do you mean by "play a sound from my disk"? With this code you can only play a sound from your MIDlet's JAR file. (Or perhaps your build directory if you're using an emulator to run the MIDlet classes before packaging as a JAR)
  • you're specifying a relative filename, which means that it gets prepended with your class's package name (with slashes instead of dots); more often it's useful to specify an absolute pathname, i.e. "/wmpaud1.wav", to get a file in your JAR's root directory
  • stupid question, but is your phone set to silent?
  • are you sure that your phone (or emulator's emulated phone) supports WAV? For example, Nokia 6230 doesn't support WAV or any kind of sampled sound format in MMAPI
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (17 views)
2013-06-19 14:55:23

BrassApparatus (27 views)
2013-06-19 08:52:37

NegativeZero (30 views)
2013-06-19 03:31:52

NegativeZero (33 views)
2013-06-19 03:24:09

Jesse_Attard (36 views)
2013-06-18 22:03:02

HeroesGraveDev (73 views)
2013-06-15 23:35:23

Vermeer (74 views)
2013-06-14 20:08:06

davedes (75 views)
2013-06-14 16:03:55

alaslipknot (66 views)
2013-06-13 07:56:31

Roquen (90 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!