audio.recdevice
Get or set the current audio recording device, as a string
Example
--! luart-extensions
import audio
local console = require "console"
local function write_property(name, value)
-- Fancy formatting
console.writecolor("yellow", name..":\t")
console.writecolor("cyan", value.."\n")
end
-- Display the audio properties
write_property("Audio recording device", audio.recdevice)