Page 1 of 1

[Implemented] More supported sound types

Posted: Wed Oct 29, 2003 11:42 am
by DriakTravo
I would like to see more supported sound types than just wav when using LoadSound() PlaySound(). Like MIDI and/or Mp3 would be VERY nice. Is it possible to get streaming OGG?

(Implemented OGG and FLAC sound plugins)

Posted: Wed Oct 29, 2003 1:49 pm
by Kale
Midi's can be played at the minute natively using:

Code: Select all

LoadMovie(0, "song.mid")
PlayMovie(0, WindowID())
Also see the 'Midi.pbi' file in the include pack here: http://caosandkin.bei.t-online.de/purebasic/jaPBe/ for 'real' midi functions.

MP3's can be played at the minute natively also using:

Code: Select all

LoadMovie(0, "song.mp3")
PlayMovie(0, WindowID())

Re: More supported sound types

Posted: Wed Oct 29, 2003 2:15 pm
by WolfgangS
Is it possible to get streaming OGG?
If you need streaming OGG and/or MP3 check out the Audiere For Purebasic pack.

http://www.schliess.com/audiere

MFG
WolfgangS

Posted: Wed Oct 29, 2003 3:20 pm
by LarsG
WolfgangS: I get a constant not found #AUDIERE_FF_AUTODETECT on some of the examples..

-Lars

Posted: Wed Oct 29, 2003 3:38 pm
by WolfgangS
LarsG wrote:WolfgangS: I get a constant not found #AUDIERE_FF_AUTODETECT on some of the examples..

-Lars
Bug removed. Just get the fixed version ...

Thank you ...
WolfgangS

Posted: Wed Oct 29, 2003 5:59 pm
by DriakTravo
What I would like is for Mp3s and MIDIs to be supported by LoadSound and PlaySound so I can change frequencys and loop easier.

Posted: Wed Oct 29, 2003 11:21 pm
by KarLKoX
You can also try the PureBasic Fmod Port (viewtopic.php?t=7880). There are 8 examples (dsp, radio streaming, mod player, 3D ...). Check out the official fmod site to know more ( http://www.fmod.org )