Event.DATA AVAILABLE

From GiderosMobile
Revision as of 15:27, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "</source>" to "</syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2013.06
Value: dataAvailable
Defined by: Microphone

Description

Dispatched as audio samples become available.

Parameters

peakAmplitude: (number) the audio channel peak amplitute
averageAmplitude: (number) the audio channel average RMS amplitute

Example

require "microphone"

local microphone = Microphone.new(nil, 22050, 1, 16)

microphone:addEventListener(Event.DATA_AVAILABLE, function(event)
	print(event.peakAmplitude, "*", event.averageAmplitude)
end)

microphone:setOutputFile("|D|record.wav")