Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document utterance_filename #157

Merged
merged 2 commits into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,17 @@
// Set 'save_utterances' to save each sentence sent to STT -- by default
// they are only kept briefly in-memory. This can be useful for for
// debugging or other custom purposes. Recordings are saved
// under: /'save_path'/mycroft_utterances/<TIMESTAMP>.wav
// under: /'save_path'/utterances/'utterance_filename'.wav
"save_utterances": false,

// Set 'utterance_filename' based on how you would like to save utterances.
// Special keys surrouned by curly braces will be replaces as follows
// "{md5}" - the md5 hash of the transcription
// "{uuid4}" - a random uuid4
// "{now:%Y-%m-%dT%H%M%S%z}" - the local ISO datetime
// "{utcnow:%Y-%m-%dT%H%M%S%z}" - the UTC ISO datetime
"utterance_filename": "{hash}-{uuid4}",

"wake_word_upload": {
"disable": true,
// official mycroft endpoint disabled, enable if you want to collect your own
Expand Down
Loading