Transcribe provides options to save content.
- Save all text in Transcription window
- Save all responses from LLM
- Copy to Clipboard
- Clear all content manually
- Clear all content periodically
All text in the transcription window can be saved to file using the menu option Save Transcript to File.
By Default all responses from LLM are saved to the file logs/response.txt.
The behavior, file location can be changed using these config options in parameters.yaml file
# These two parameters are used together.
# Save LLM response to file if save_llm_response_to_file is Yes
save_llm_response_to_file: Yes # Possible values are Yes, No
llm_response_file: 'logs/response.txt'All text in the transcription window can be copied to clipboard using the menu option Copy Transcript to Clipboard.
All text in the transcription window can be cleared using the menu option Clear Audio Transcript.
By default all text in the transcription window persists for the duration of application execution.
Text in transcription window can be cleared periodically using these config options in parameters.yaml file
# These two parameters are used together.
# Setting clear_transcript_periodically: yes will clear transcript data at a regular interval
# clear_transcript_interval_seconds is applicable when clear_transcript_periodically is set to Yes
clear_transcript_periodically: No # Possible values are Yes, No
clear_transcript_interval_seconds: 30
