Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 940 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 940 Bytes

DerelictVorbis

A dynamic binding to libvorbis version 1.3 for the D Programming Language.

Please see the sections on Compiling and Linking and The Derelict Loader, for information on how to build DerelictVorbis and load libvorbis at run time. In the meantime, here's some sample code.

import derelict.vorbis.vorbis;
import derelict.vorbis.enc;
import derelict.vorbis.file;

void main() {
    // Load the libvorbis library and its companion encoding and file libaries.
    import derelict.vorbis;

    /* Alternatively:
    import derelict.vorbis.codec,
           derelict.vorbis.enc,
           derelict.vorbis.file;
    */
    DerelictVorbis.load();
    DerelictVorbisEnc.load();
    DerelictVorbisFile.load();

    // Now libvorbis functions can be called.
    ...
}