mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
tools: add pw-midi2play and pw-midi2record aliases
And update the documentation.
This commit is contained in:
parent
eda3290883
commit
9eb6cda245
3 changed files with 28 additions and 8 deletions
|
|
@ -59,6 +59,8 @@ if get_option('pw-cat').allowed() and sndfile_dep.found()
|
|||
'pw-record',
|
||||
'pw-midiplay',
|
||||
'pw-midirecord',
|
||||
'pw-midi2play',
|
||||
'pw-midi2record',
|
||||
'pw-dsdplay',
|
||||
'pw-encplay',
|
||||
'pw-sysex',
|
||||
|
|
|
|||
|
|
@ -1997,6 +1997,12 @@ int main(int argc, char *argv[])
|
|||
} else if (spa_streq(prog, "pw-midirecord")) {
|
||||
data.mode = mode_record;
|
||||
data.data_type = TYPE_MIDI;
|
||||
} else if (spa_streq(prog, "pw-midi2play")) {
|
||||
data.mode = mode_playback;
|
||||
data.data_type = TYPE_MIDI2;
|
||||
} else if (spa_streq(prog, "pw-midi2record")) {
|
||||
data.mode = mode_record;
|
||||
data.data_type = TYPE_MIDI2;
|
||||
} else if (spa_streq(prog, "pw-sysex")) {
|
||||
data.mode = mode_playback;
|
||||
data.data_type = TYPE_SYSEX;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue