mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-12-05 05:07:47 +00:00
- added midi and text streams with: - on - name - ip had to manually test as these are currently write-only, but I suspect this is a bug/will change in the future
48 lines
1.2 KiB
PowerShell
48 lines
1.2 KiB
PowerShell
$KindMap = @{
|
|
'basic' = @{
|
|
'name' = 'basic'
|
|
'p_in' = 2
|
|
'v_in' = 1
|
|
'p_out' = 1
|
|
'v_out' = 1
|
|
'asio_in' = 4
|
|
'asio_out' = 8
|
|
'composite' = 0
|
|
'insert' = 0
|
|
'vban' = @{ 'in' = 4; 'out' = 4; 'midi' = 1; 'text' = 1 }
|
|
'eq_ch' = @{ 'strip' = 0; 'bus' = 0 }
|
|
'cells' = 0
|
|
};
|
|
'banana' = @{
|
|
'name' = 'banana'
|
|
'p_in' = 3
|
|
'v_in' = 2
|
|
'p_out' = 3
|
|
'v_out' = 2
|
|
'asio_in' = 6
|
|
'asio_out' = 8
|
|
'composite' = 8
|
|
'insert' = 22
|
|
'vban' = @{ 'in' = 8; 'out' = 8; 'midi' = 1; 'text' = 1 }
|
|
'eq_ch' = @{ 'strip' = 0; 'bus' = 8 }
|
|
'cells' = 6
|
|
};
|
|
'potato' = @{
|
|
'name' = 'potato'
|
|
'p_in' = 5
|
|
'v_in' = 3
|
|
'p_out' = 5
|
|
'v_out' = 3
|
|
'asio_in' = 10
|
|
'asio_out' = 8
|
|
'composite' = 8
|
|
'insert' = 34
|
|
'vban' = @{ 'in' = 8; 'out' = 8; 'midi' = 1; 'text' = 1 }
|
|
'eq_ch' = @{ 'strip' = 2; 'bus' = 8 }
|
|
'cells' = 6
|
|
};
|
|
}
|
|
|
|
function GetKind ([string]$kindId) {
|
|
$KindMap[$kindId]
|
|
} |