Skip to content

Commit

Permalink
Fix list-backend-names
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Oct 21, 2024
1 parent 0cdd3d8 commit 5474da3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 181 deletions.
9 changes: 5 additions & 4 deletions auxiliary/libs/signalflow_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def run_list_input_device_names(backend_name: str = None):
for name in input_device_names:
print(" - %s" % name)


def run_list_backend_names():
backend_names = AudioGraph.get_backend_names()
print("Available output backend names:")
Expand Down Expand Up @@ -144,14 +145,14 @@ def main():
# --------------------------------------------------------------------------------
list_input_device_names = subparsers.add_parser('list-input-device-names', help='list available input devices')
list_input_device_names.add_argument('--backend-name', type=str,
help='name of audio backend to use (default: system default backend)',
default=None)
help='name of audio backend to use (default: system default backend)',
default=None)

# --------------------------------------------------------------------------------
# Command: list-output-backend-names
# --------------------------------------------------------------------------------
list_output_backend_names = subparsers.add_parser('list-output-backend-names',
help='list available output backends')
list_backend_names = subparsers.add_parser('list-backend-names',
help='list available output backends')
help = subparsers.add_parser('help', help='show help')

# --------------------------------------------------------------------------------
Expand Down
177 changes: 0 additions & 177 deletions source/src/node/io/input/soundio.cpp

This file was deleted.

0 comments on commit 5474da3

Please sign in to comment.