mp3 playback
mp3 playback
is there anyway to play mp3 in a program
Insanity is over rated, unless you can join me in mine.
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
-
- Enthusiast
- Posts: 218
- Joined: Sat Apr 26, 2003 4:47 am
- Location: Dullsville..population: me
- Contact:
Re: mp3 playback
Checkout the Movie commands in the manual..
Although it sounds like it`s made for only playing movies,the manual says..
Although it sounds like it`s made for only playing movies,the manual says..
Windows only: as it uses the DirectX technology, any kind of movie (or better, of media) can be played with this library: AVI, MPG, DivX, Mp3 etc..
-
- Enthusiast
- Posts: 613
- Joined: Tue May 06, 2003 2:50 pm
- Location: Germany
- Contact:
fly a jet would be to
back mean up
foward means down
left is left
rfight is right
trigger guns
buttons missles
run low on gas find a nice deserted place the use the emegrcy excape
back mean up
foward means down
left is left
rfight is right
trigger guns
buttons missles
run low on gas find a nice deserted place the use the emegrcy excape
Insanity is over rated, unless you can join me in mine.
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
Don't post questions at work
-
- New User
- Posts: 5
- Joined: Sun Aug 01, 2004 10:19 pm
- Contact:
Hey Rookie hava look at this!
<b><font face="Courier" size="4">Test Test...1..2..1..2.. HTML is on? Good.... Hi Guys! 
</font></b>
Iam also a bloody beginner! But hey! this would not be the beginner section if questions ,does not matter how stupid, would not be alowed? Wouldn`t it?
I was playing with BlueSpeed`s Tutorial (german)
http://www.robsite.de/download.php?id=2 ... tpurebasic
and learned a lot of cool stuff
THANKS BLUESPEED!
Try to compile this, but you need something that it playsback.
I used "sum 41 - Into Deep.mp3" very cool song!
But substite the name with a mp3 of your choice and put it in the same dir as this code.pb
What it should do:
Open a window and everytime you press ok it changes balance and volume.
after pure pascal, delphi, c++ and visual basic: I LOVE PURE BASIC... it`s so intuitive and the compiler is not tooo petty.
hope that helped a bit 
KEEP DA FAITH!

</font></b>
Iam also a bloody beginner! But hey! this would not be the beginner section if questions ,does not matter how stupid, would not be alowed? Wouldn`t it?
I was playing with BlueSpeed`s Tutorial (german)
http://www.robsite.de/download.php?id=2 ... tpurebasic
and learned a lot of cool stuff

Try to compile this, but you need something that it playsback.
I used "sum 41 - Into Deep.mp3" very cool song!
But substite the name with a mp3 of your choice and put it in the same dir as this code.pb
What it should do:
Open a window and everytime you press ok it changes balance and volume.
after pure pascal, delphi, c++ and visual basic: I LOVE PURE BASIC... it`s so intuitive and the compiler is not tooo petty.
Code: Select all
If InitMovie() = 0 ; Init Movie/Music
MessageRequester("TITEL","InitMovie failed",0)
EndIf
If InitSound() = 0
MessageRequester("TITEL","InitSound failed",0)
EndIf
Balance = -100
Volume = 0
If LoadMovie(0,"sum 41 - Into Deep.mp3")
; PlayMovie(#Movie, WindowID)
PlayMovie(0,0)
Else
MessageRequester("TITLE","LoadMovie MP3 failed - Line 14")
EndIf
Repeat
Volume+20
Balance+20
If Balance > 99
Balance = -100
EndIf
MovieAudio(Volume, Balance)
MessageRequester("PLAY MP3! BALANCE : "+Str(Balance)+" VOLUME : "+Str(Volume),"PRESS OK To MOVE SOUND FROM LEFT To RIGHT!",0)
ForEver

KEEP DA FAITH!