Results 1 to 7 of 7

Thread: Prometheus Audio - First draft

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45

    Cool Prometheus Audio - First draft

    Just rolled this out and I must say, I'm liking this simplistic idea. Its based on a version of the Bass library which I have compiled on both windows and ubuntu 10.04TLS and I believe there should be no problems with Mac OS X either. A quick demo program from me testing out playing an audio file:

    Code:
    program demo;
    
    uses
    	Prometheus_Audio;
    	
    var
    	Music: Audio;
    	
    begin
    	PrometheusAudio_Start();
    	Music := LoadAudio('song.mp3');
    	Music.Play();
    	readln();
    	Music.Pause();
    	readln();
    	Music.Resume();
    	readln();
    	Music.Stop();
    end.
    And yes it compiles and runs.

    cheers,
    code_glitch

    PS: Prometheus_Audio gets released in a few days.
    Last edited by code_glitch; 10-10-2010 at 05:17 PM.
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •