Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.85 KB

README.txt

File metadata and controls

43 lines (32 loc) · 1.85 KB
 
May 27, 2013
May 27, 2013
1
May 27, 2013
May 27, 2013
2
SDL_mixer 2.0
May 27, 2013
May 27, 2013
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
The latest version of this library is available from:
http://www.libsdl.org/projects/SDL_mixer/
Due to popular demand, here is a simple multi-channel audio mixer.
It supports 8 channels of 16 bit stereo audio, plus a single channel
of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
libraries.
See the header file SDL_mixer.h and the examples playwave.c and playmus.c
for documentation on this mixer library.
The mixer can currently load Microsoft WAVE files and Creative Labs VOC
files as audio samples, and can load MIDI files via Timidity and the
following music formats via MikMod: .MOD .S3M .IT .XM. It can load
Ogg Vorbis streams as music if built with Ogg Vorbis or Tremor libraries,
and finally it can load MP3 music using the SMPEG or libmad libraries.
Tremor decoding is disabled by default; you can enable it by passing
--enable-music-ogg-tremor
Oct 17, 2017
Oct 17, 2017
23
to configure, or by defining MUSIC_OGG and OGG_USE_TREMOR.
May 27, 2013
May 27, 2013
24
25
26
libmad decoding is disabled by default; you can enable it by passing
--enable-music-mp3-mad
Oct 17, 2017
Oct 17, 2017
27
to configure, or by defining MUSIC_MP3_MAD
May 27, 2013
May 27, 2013
28
29
30
31
32
33
34
35
36
37
38
39
40
41
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
WARNING: The license for libmad is GPL, which means that in order to
use it your application must also be GPL!
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The process of mixing MIDI files to wave output is very CPU intensive,
so if playing regular WAVE files sound great, but playing MIDI files
sound choppy, try using 8-bit audio, mono audio, or lower frequencies.
To play MIDI files, you'll need to get a complete set of GUS patches
from:
http://www.libsdl.org/projects/mixer/timidity/timidity.tar.gz
and unpack them in /usr/local/lib under UNIX, and C:\ under Win32.
Jun 28, 2013
Jun 28, 2013
42
This library is under the zlib license, see the file "COPYING.txt" for details.
May 27, 2013
May 27, 2013
43