Difference between revisions of "love.audio.getRecordingDevices"

m (updated version from 0.11.0 to 11.0)
m (Android also lack mic support atm)
Line 4: Line 4:
 
The first device in the list is the user's default recording device. The list may be empty if there are no microphones connected to the system.
 
The first device in the list is the user's default recording device. The list may be empty if there are no microphones connected to the system.
  
Audio recording is currently not supported on iOS.
+
Audio recording is currently not supported on iOS and Android.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 02:21, 24 September 2019

Available since LÖVE 11.0
This function is not supported in earlier versions.

Gets a list of RecordingDevices on the system.

The first device in the list is the user's default recording device. The list may be empty if there are no microphones connected to the system.

Audio recording is currently not supported on iOS and Android.

Function

Synopsis

devices = love.audio.getRecordingDevices( )

Arguments

None.

Returns

table devices
The list of connected recording devices.

See Also

Other Languages