Difference between revisions of "Microphone"
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 8: | Line 8: | ||
=== Example === | === Example === | ||
− | < | + | <syntaxhighlight lang="lua"> |
require "microphone" | require "microphone" | ||
Revision as of 14:28, 13 July 2023
Supported platforms:
Available since: Gideros 2013.06
Description
Use this plugin to record to an audio clip using a connected microphone.
Example
<syntaxhighlight lang="lua"> require "microphone"
local microphone = Microphone.new(nil, 22050, 1, 16)
microphone:addEventListener(Event.DATA_AVAILABLE, function(event) print(event.peakAmplitude) end)
microphone:setOutputFile("|D|record.wav")
local function onRecord() microphone:start() end --record:addEventListener(Event.CLICK, onRecord)
local function onRecordStop() microphone:stop() end --recordStop:addEventListener(Event.CLICK, onRecordStop) </source>
MethodsMicrophone.new creates a new Microphone object |
EventsConstants |