Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #14342
| From | "Gavino" <invalid@invalid.invalid> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: i want to play mp3 for infinite time |
| Date | 2012-05-06 21:34 +0200 |
| Message-ID | <a0o22pF437U1@mid.individual.net> (permalink) |
| References | <22351436.624.1336324248195.JavaMail.geo-discussion-forums@pbctc10> |
<chetan1991@gmail.com> wrote in message
news:22351436.624.1336324248195.JavaMail.geo-discussion-forums@pbctc10...
> I want to play my mp3 file for infinite times,
> help me to play this for infinite time in loop.
> public void controllerUpdate(ControllerEvent e)
> {
> if (e instanceof EndOfMediaEvent)
> {
> playMP3.stop();
> playMP3.close();
Instead of closing the player, you should do this:
playMP3.setMediaTime(new Time(0));
playMP3.start();
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
i want to play mp3 for infinite time chetan1991@gmail.com - 2012-05-06 10:10 -0700
Re: i want to play mp3 for infinite time "Gavino" <invalid@invalid.invalid> - 2012-05-06 21:34 +0200
Re: i want to play mp3 for infinite time Lew <noone@lewscanon.com> - 2012-05-06 21:00 -0700
Re: i want to play mp3 for infinite time Knute Johnson <nospam@knutejohnson.com> - 2012-05-06 21:46 -0700
Re: i want to play mp3 for infinite time "Gavino" <invalid@invalid.invalid> - 2012-05-07 19:36 +0200
Re: i want to play mp3 for infinite time Knute Johnson <nospam@knutejohnson.com> - 2012-05-07 21:54 -0700
csiph-web