Merge pull request #2497 from preynal/main

feat: ability to select audio input device
This commit is contained in:
paul-gauthier 2024-11-30 09:33:00 -08:00 committed by GitHub
commit 82929f650c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 52 additions and 7 deletions

View file

@ -770,6 +770,12 @@ def get_parser(default_config_files, git_root):
default="en",
help="Specify the language for voice using ISO 639-1 code (default: auto)",
)
group.add_argument(
"--voice-input-device",
metavar="VOICE_INPUT_DEVICE",
default=None,
help="Specify the input device name for voice recording",
)
return parser