We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f259e2 commit 4a985cdCopy full SHA for 4a985cd
1 file changed
PythonRpcServer/transcribe.py
@@ -86,6 +86,10 @@ def transcribe_audio(media_filepath):
86
with open(json_output_path, 'r') as json_file:
87
transcription_result = json.load(json_file)
88
89
+ # Print the transcription result (testing purpose)
90
+ # print("Transcription result:")
91
+ # print(json.dumps(transcription_result, indent=4))
92
+
93
# Delete the JSON file after reading it
94
os.remove(json_output_path)
95
print(f"Deleted the JSON file: {json_output_path}")
0 commit comments