1SDL::Mixer::MixChunk(3)User Contributed Perl DocumentatioSnDL::Mixer::MixChunk(3)
2
3
4

NAME

6       SDL::Mixer::MixChunk -- SDL Bindings for structure SDL_MixChunk
7

CATEGORY

9       Mixer, Structure
10

SYNOPSIS

12        use SDL;
13        use SDL::Mixer::MixChunk;
14
15        my $mix_chunk = SDL::Mixer::Music::load_WAV('sample.wav');
16
17        printf("length of audio data is %d bytes\n", $mix_chunk->alen);
18        printf("volume is %d\n",                     $mix_chunk->volume);
19

DESCRIPTION

21       Stores audio data in memory.
22
23       Note: It's a bad idea to free a chunk that is still being played...
24

METHODS

26   alen
27       length of audio data in bytes
28
29   volume
30       Per-sample volume, 0-128 (normally "MIX_MAX_VOLUME" after loading)
31

AUTHORS

33       See "AUTHORS" in SDL.
34
35
36
37perl v5.30.0                      2019-07-26           SDL::Mixer::MixChunk(3)
Impressum