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