<From README, Edited So Easier to Read>
Well here it is! Lua Player Mod 3!
This version includes playback for MP3 and Ogg. It works!
New Functions:
______________
MP3
______________
Most Mp3 functions are self explanetory.
Mp3.load()
Mp3.stop()
Mp3.pause()
Mp3.play()
Mp3.getTime() --returns how long the mp3 has been playing in a string
Mp3.EndOfStream() --returns "true" or "false" (with quotes). You can use it like this:
if Mp3.EndOfStream() == "true" then songend() end
Mp3.getTime() it should produce the
same results.
______________
OGG
______________
Most Ogg functions are self explanetory.
Ogg.load()
Ogg.stop()
Ogg.pause()
Ogg.play()
Ogg.EndOfStream() --returns "true" or "false" (with quotes). You can use it like this:
if Ogg.EndOfStream() == "false" then whatever end
Ogg.getSec()
Ogg.getMin()
Ogg.getHour()
Functions from the prevoius releases:
______________
SYSTEM & 3D
______________
System.Quit()
Gum.lookAt()
______________
NETLIB
______________
Also there are the Netlib Functions included, so your netlib capable games should work!
I removed the over/under clocking because it can be dangerous to use! I almost bricked,
but thanks to youresam for saving my psp!
This readme is a little better than the one included in the zip's...