Difference between revisions of "User:Zorg/Manual:Audio/8"
(Initial page; further work to follow. NOT SPAM, OK? seriously :3) |
m (Added navigation block, replaced educational content with outline list.) |
||
Line 1: | Line 1: | ||
− | + | Example 8 - generative audio - decoders but sampling should be this, since samples can be long, and decoders can do a better job | |
+ | love.sound.newDecoder ...okay, no. sounddata makes for faster access, but still, | ||
+ | Decoder:getBitDepth decoders will be seekable and will consume less RAM, so yeah, it should work. | ||
+ | Decoder:getChannels basically, sounddatas are for samplers as well as generators, while decoders are for long audio clips. | ||
+ | Decoder:getDuration | ||
+ | Decoder:getSampleRate | ||
+ | Decoder:decode will be introduced in 0.11 | ||
+ | Decoder:seek will be introduced in 0.11 | ||
+ | |||
+ | == Navigation == | ||
+ | |||
+ | {| class="wikitable floatleft" | ||
+ | | [[parent::User:Zorg/Manual:Audio/7|Previous Chapter]] | ||
+ | |} | ||
+ | <!-- | ||
+ | {| class="wikitable floatright" | ||
+ | | [[parent::User:Zorg/Manual:Audio/2|Next Part]] | ||
+ | |} | ||
+ | --> | ||
+ | {| class="wikitable" style="margin-left: auto; margin-right: auto; border: none;" | ||
+ | | [[parent::User:Zorg/Manual|Home]] | ||
+ | |} |
Revision as of 16:38, 12 November 2016
Example 8 - generative audio - decoders but sampling should be this, since samples can be long, and decoders can do a better job love.sound.newDecoder ...okay, no. sounddata makes for faster access, but still, Decoder:getBitDepth decoders will be seekable and will consume less RAM, so yeah, it should work. Decoder:getChannels basically, sounddatas are for samplers as well as generators, while decoders are for long audio clips. Decoder:getDuration Decoder:getSampleRate Decoder:decode will be introduced in 0.11 Decoder:seek will be introduced in 0.11
Previous Chapter |
Home |