Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Commit 6375e84

Browse files
Switch meeting audio files to m4a
1 parent 5af19e5 commit 6375e84

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src-tauri/src/speech_models.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,16 @@ pub fn model_path_is_ready(model_id: SpeechModelId, path: &Path) -> bool {
309309
&& package_directory_ready(&path.join("omnilingual-ctc-300m-int8.mlpackage"))
310310
}
311311
SpeechModelId::Qwen3Small | SpeechModelId::Qwen3Large => {
312-
required_regular_files_present(path, &["vocab.json", "merges.txt", "tokenizer_config.json"])
313-
&& directory_contains_extension(path, "safetensors")
312+
required_regular_files_present(
313+
path,
314+
&["vocab.json", "merges.txt", "tokenizer_config.json"],
315+
) && directory_contains_extension(path, "safetensors")
314316
}
315317
}
316318
}
317319

318320
pub fn meeting_audio_file_name(meeting_id: &str) -> String {
319-
format!("meeting-{}.wav", sanitize_path_component(meeting_id))
321+
format!("meeting-{}.m4a", sanitize_path_component(meeting_id))
320322
}
321323

322324
fn read_sysctl_value(name: &str) -> Option<String> {

0 commit comments

Comments
 (0)