From 8c8efab754c0a45bccfba1d9577c2e4b53b7f7fa Mon Sep 17 00:00:00 2001 From: Valentin Boulanger Date: Sat, 7 Jun 2025 20:58:43 +0200 Subject: [PATCH] small model by default --- audioTranscription.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/audioTranscription.py b/audioTranscription.py index a37357f..618ca45 100644 --- a/audioTranscription.py +++ b/audioTranscription.py @@ -10,7 +10,7 @@ try: # Options definition parser.add_argument('-a', '--audio', help='Audio file to process', default='audio.wav') - parser.add_argument('-m', '--model', help="Transcription model to use for processing the audio", default='base') + parser.add_argument('-m', '--model', help="Transcription model to use for processing the audio", default='small') # Options analyzing args = parser.parse_args() @@ -29,5 +29,4 @@ except KeyboardInterrupt: log_step("exit", 100, "program exit") except Exception as e: - log_step("error", 100, str(e)) - \ No newline at end of file + log_step("error", 100, str(e)) \ No newline at end of file