vgmstream - A library for playback of various streamed audio formats used in video games.
Go to file
halleyscometsw 429d462315 a bit clearer
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@31 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
2008-02-15 16:00:32 +00:00
src a bit clearer 2008-02-15 16:00:32 +00:00
test new test feature, clarify usage, add usage to readme 2008-02-14 22:38:23 +00:00
LICENSE Basic documents. 2008-02-14 04:57:32 +00:00
readme.txt new test feature, clarify usage, add usage to readme 2008-02-14 22:38:23 +00:00

vgmstream

This is vgmstream, a library for playing streamed audio from video games.
It is very much under development. The only end-user part right now is the test program, simply called "test" (test.exe for Windows), which decodes a file to a standard .wav output file.

Usage: test [-o outfile.wav] [-l loop count]
        [-f fade time] [-i] [-p] [-c] [-m] infile
Options:
        -o outfile.wav: name of output .wav file, default is dump.wav
        -l loop count: loop count, default 2.0
        -f fade time: fade time (seconds), default 10.0
        -i: ignore looping information and play the whole stream once
        -p: output to stdout (for piping into another program)
        -c: loop forever (continuously)
        -m: print metadata only, don't decode

Typical usage would be:
test -o happy.wav happy.adx

Formats supported by this version of vgmstream (r30):
- .adx (CRI ADX ADPCM)
- .brstm (RSTM: GC/Wii ADPCM, 8/16 bit PCM)
- .strm (STRM: NDS IMA ADPCM, 8/16 bit PCM)
- .adp (GC DTK ADPCM)
- .agsc (GC ADPCM)
- .rsf (CCITT G.721 ADPCM)

Enjoy!
-hcs