Difference between revisions of "Event.DATA AVAILABLE"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
'''Available since:''' Gideros 2013.06<br/>
 
'''Available since:''' Gideros 2013.06<br/>
 
'''Value:''' dataAvailable<br/>
 
'''Value:''' dataAvailable<br/>
 +
'''Defined by:''' [[Microphone]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate>Dispatched as audio samples become available.</translate>
+
Dispatched as audio samples become available.
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''peakAmplitude''': (number) <translate>The audio channel's peak amplitute.</translate><br/>
+
'''peakAmplitude''': (number) the audio channel peak amplitute<br/>
'''averageAmplitude''': (number) <translate>The audio channel's average RMS amplitute.</translate><br/>
+
'''averageAmplitude''': (number) the audio channel average RMS amplitute<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
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")
 +
</syntaxhighlight>
 +
 
 +
{{Microphone}}

Latest revision as of 15:27, 13 July 2023

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")