Working on audio commands

This commit is contained in:
2025-09-01 23:01:08 +02:00
commit 343d1d2f93
19 changed files with 1932 additions and 0 deletions

15
main.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python3
"""
MyTTSClient - Wyoming audio recording and transcription client
Usage:
python main.py server check
python main.py audio list [--inputs] [--outputs] [--pulse]
python main.py audio test [--device ID] [--duration N] [--save]
python main.py audio config
"""
from src.cli import app
if __name__ == "__main__":
app()