Setting up a Recording Device
1 min
before we can start with a new recording, we first have to establish a \<font color="#ef4444">recording device\</font> recording devices can be any input device currently connected to the host using the autoscriber sdk to get recording devices await scribe 	 getavailablerecordingdevices() 	 then((res recordingdevicelist) => { // list of available devices will be in the response availablemicrophones 	 let microphones = res availablemicrophones; 	}) 	 catch((err) => { 	 console log(err); 	}); the \<font color="#ef4444">recordingdevicelist\</font> type will return a list of \<font color="#ef4444">recordingdevice\</font> type, which has the following properties name description type required/optional deviceid the deviceid of the recording device string required name the name of the recording device as configured on the device properties string required
