Difference between revisions of "Microphone.new"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.06<br/> === Description === Creates a new Microphone object. <source lang="lua"> = Microphone.new(deviceNamesampleRatenumChannels...")
 
Line 4: Line 4:
 
Creates a new Microphone object.
 
Creates a new Microphone object.
 
<source lang="lua">
 
<source lang="lua">
= Microphone.new(deviceNamesampleRatenumChannelsbitsPerSamplequality,)
+
Microphone.new(deviceName,sampleRate,numChannels,bitsPerSample,quality)
 
</source>
 
</source>
'''deviceName:''' (string) The name of the device. Passing nil or an empty string will pick the default device. ''''''<br/>
+
'''deviceName''': (string) The name of the device. Passing nil or an empty string will pick the default device. ''''''<br/>
'''sampleRate:''' (number) Sample rate of the recording. This value should be between 4000 and 44100. ''''''<br/>
+
'''sampleRate''': (number) Sample rate of the recording. This value should be between 4000 and 44100. ''''''<br/>
'''numChannels:''' (number) Number of channels. This value can be 1 for mono and 2 for stereo. ''''''<br/>
+
'''numChannels''': (number) Number of channels. This value can be 1 for mono and 2 for stereo. ''''''<br/>
'''bitsPerSample:''' (number) Bits per sample. This value can be 8 or 16. ''''''<br/>
+
'''bitsPerSample''': (number) Bits per sample. This value can be 8 or 16. ''''''<br/>
'''quality:''' (number) Quality factor when a compression codec is used, between 0 and 1. Default to 0.5. '''optional'''<br/>
+
'''quality''': (number) Quality factor when a compression codec is used, between 0 and 1. Default to 0.5. '''optional'''<br/>

Revision as of 11:18, 23 August 2018

Available since: Gideros 2013.06

Description

Creates a new Microphone object.

 Microphone.new(deviceName,sampleRate,numChannels,bitsPerSample,quality)

'deviceName: (string) The name of the device. Passing nil or an empty string will pick the default device. '
'sampleRate: (number) Sample rate of the recording. This value should be between 4000 and 44100. '
'numChannels: (number) Number of channels. This value can be 1 for mono and 2 for stereo. '
'bitsPerSample: (number) Bits per sample. This value can be 8 or 16. '
quality: (number) Quality factor when a compression codec is used, between 0 and 1. Default to 0.5. optional