diff --git a/docs/audio.html b/docs/audio.html index 6e99412..b7ed01d 100644 --- a/docs/audio.html +++ b/docs/audio.html @@ -38,159 +38,160 @@ -
-
- -
-
-
-
Audio
-
-

In this section you will learn how to get information about detected audio devices or interfaces. Results might differ on different platforms as not everything is available/detectable on each platform:

-

For function reference and examples we assume, that we imported systeminformation as follows:

-
const si = require('systeminformation');
-

Detected Audio Devices

-

All functions in this section return a promise or can be called with a callback function (parameter cb in the function reference)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
FunctionResult objectLinuxBSDMacWinSunComments
si.audio(cb)[{...}]XXXaudio informatiom
[0].idXXXinternal ID
[0].nameXXXaudio name
[0].manufacturerXXXmanufacturer
[0].revisionXrevision
[0].driverXdriver
[0].defaultXis default
[0].channelXXchannel e.g. Build-In, HDMI, USB, ...
[0].typeXXXtype e.g. Speaker
[0].inXis input channel
[0].outXis output channel
[0].statusXXstatus
-
Example
-
const si = require('systeminformation');
+  
+
+
+ +
+
+
+
Audio
+
+

In this section you will learn how to get information about detected audio devices or interfaces. Results might differ on different platforms as not everything is available/detectable on each platform:

+

For function reference and examples we assume, that we imported systeminformation as follows:

+
const si = require('systeminformation');
+

Detected Audio Devices

+

All functions in this section return a promise or can be called with a callback function (parameter cb in the function reference)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -
FunctionResult objectLinuxBSDMacWinSunComments
si.audio(cb)[{...}]XXXaudio informatiom
[0].idXXXinternal ID
[0].nameXXXaudio name
[0].manufacturerXXXmanufacturer
[0].revisionXrevision
[0].driverXdriver
[0].defaultXis default
[0].channelXXchannel e.g. Build-In, HDMI, USB, ...
[0].typeXXXtype e.g. Speaker
[0].inXis input channel
[0].outXis output channel
[0].statusXXstatus
+
Example
+
const si = require('systeminformation');
 si.audio().then(data => console.log(data));
 [
@@ -221,17 +222,18 @@ si.audio().then(data => console.log(data));
status: 'online' } ] -
+
+
- - +
-