set audio device by name

This commit is contained in:
DJ2LS 2022-12-04 16:12:43 +01:00
parent ca955b1ff2
commit bc72e5f3ba

View file

@ -90,14 +90,14 @@ if __name__ == "__main__":
dest="audio_input_device",
default=0,
help="listening sound card",
type=int,
type=str,
)
PARSER.add_argument(
"--tx",
dest="audio_output_device",
default=0,
help="transmitting sound card",
type=int,
type=str,
)
PARSER.add_argument(
"--port",