1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
"name": "sdl2-mixer",
"version": "2.0.4",
"port-version": 13,
"description": "Multi-channel audio mixer library for SDL.",
"homepage": "https://www.libsdl.org/projects/SDL_mixer",
"dependencies": [
"sdl2",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"nativemidi"
],
"features": {
"dynamic-load": {
"description": "Load plugins with dynamic call."
},
"fluidsynth": {
"description": "Support for FluidSynth MIDI/SF2 audio format.",
"dependencies": [
"fluidsynth"
]
},
"libflac": {
"description": "Support for FLAC audio format.",
"dependencies": [
"libflac"
]
},
"libmodplug": {
"description": "Support for MOD audio format.",
"dependencies": [
"libmodplug"
]
},
"libvorbis": {
"description": "Support for OGG Vorbis audio format.",
"dependencies": [
"libvorbis"
]
},
"mpg123": {
"description": "Support for MP3 audio format.",
"dependencies": [
"mpg123"
]
},
"nativemidi": {
"description": "Support for MIDI audio format on Windows and macOS."
},
"opusfile": {
"description": "Support for Opus audio format.",
"dependencies": [
"opusfile"
]
}
}
}
|