Skip to content

Commit 4a985cd

Browse files
committed
test print statement added
1 parent 1f259e2 commit 4a985cd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

PythonRpcServer/transcribe.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ def transcribe_audio(media_filepath):
8686
with open(json_output_path, 'r') as json_file:
8787
transcription_result = json.load(json_file)
8888

89+
# Print the transcription result (testing purpose)
90+
# print("Transcription result:")
91+
# print(json.dumps(transcription_result, indent=4))
92+
8993
# Delete the JSON file after reading it
9094
os.remove(json_output_path)
9195
print(f"Deleted the JSON file: {json_output_path}")

0 commit comments

Comments
 (0)