diff --git a/example.ipynb b/example.ipynb index 1910dec..92b7162 100644 --- a/example.ipynb +++ b/example.ipynb @@ -48,7 +48,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "id": "d66866af", "metadata": {}, "outputs": [ @@ -65,7 +65,7 @@ "\n", "\n", "Loading model...\n", - "Transcribing file number number 1: sample_audio\\Armstrong_Small_Step.ogg\n", + "Transcribing file number number 1: Armstrong_Small_Step\n", "Model and file loaded...\n", "Starting transcription...\n", "\n", @@ -77,7 +77,7 @@ "\n", "\n", "\n", - "Transcribing file number number 2: sample_audio\\Axel_Pettersson_röstinspelning.ogg\n", + "Transcribing file number number 2: Axel_Pettersson_röstinspelning\n", "Model and file loaded...\n", "Starting transcription...\n", "\n", @@ -94,10 +94,10 @@ { "data": { "text/plain": [ - "'Finished transcription, files can be found in sample_audio/'" + "'Finished transcription, files can be found in sample_audio/transcriptions'" ] }, - "execution_count": 5, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -105,6 +105,14 @@ "source": [ "transcribe(path, file_type, model, language, verbose)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0bc67265", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/transcribe.py b/transcribe.py index 92a4f9a..c4fbbd6 100644 --- a/transcribe.py +++ b/transcribe.py @@ -25,7 +25,7 @@ def transcribe(path, file_type, model=None, language=None, verbose=True): for idx,file in enumerate(glob_file): title = os.path.basename(file).split('.')[0] - print('Transcribing file number number {}: {}'.format(idx+1,file)) + print('Transcribing file number number {}: {}'.format(idx+1,title)) print('Model and file loaded...\nStarting transcription...\n') result = model.transcribe( file, @@ -48,4 +48,4 @@ def transcribe(path, file_type, model=None, language=None, verbose=True): print('\nFinished file number {}.\n\n\n'.format(idx+1)) - return 'Finished transcription, files can be found in {}'.format(path) + return 'Finished transcription, files can be found in {}transcriptions'.format(path)