Difference between revisions of "User:Zorg/Manual:Audio/8"

(Initial page; further work to follow. NOT SPAM, OK? seriously :3)
 
m (0.11.0 -> 11.0)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
bleh
+
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 11.0
 +
Decoder:seek will be introduced in 11.0
 +
 
 +
RecordingDevice
 +
love.audio.getRecordingDevices
 +
RecordingDevice:startRecording
 +
RecordingDevice:stopRecording
 +
RecordingDevice:getData
 +
RecordingDevice:getSampleCount
 +
RecordingDevice:getSampleRate
 +
RecordingDevice:getBitDepth
 +
RecordingDevice:getChannels
 +
RecordingDevice:getNane
 +
RecordingDevice:isRecording
 +
 
 +
== 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]]
 +
|}

Latest revision as of 16:59, 11 January 2019

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 11.0 Decoder:seek will be introduced in 11.0

RecordingDevice love.audio.getRecordingDevices RecordingDevice:startRecording RecordingDevice:stopRecording RecordingDevice:getData RecordingDevice:getSampleCount RecordingDevice:getSampleRate RecordingDevice:getBitDepth RecordingDevice:getChannels RecordingDevice:getNane RecordingDevice:isRecording

Navigation

Previous Chapter
Home