Hey, well, I just setup Free Pascal (pure, not lazarus, etc) to work with Jedi-SDL. It's working fine, compiles, can initiate and exit Jedi-SDL's audio using:
Code:
Program testsdl;

uses sdl;

begin
sdl_init(SDL_INIT_AUDIO);

sdl_quit;
end.
But I don't know how to load an audio file, then play/pause/stop it. Any help? Some example code, without using graphical windows? I'm going to be doing all my code via text-based, so all the 'forms' and such don't help me

Also, I can't find the demo programs... I'm using the v1 beta, and I've looked (AFAIK) everywhere.