Use int8 compute on CPU for macOS compatibility
Assisted-by: Claude Opus 4.6 via pi
diff --git a/Rakefile b/Rakefile
index c7af48c..f05de8e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -37,6 +37,8 @@ EPISODES.values.each do |ep|
hf_token = ENV.fetch("HUGGING_FACE_TOKEN") { abort "Set HUGGING_FACE_TOKEN for diarization." }
sh "whisperx", ep.audio_path,
"--model", "large-v3",
+ "--compute_type", "int8",
+ "--device", "cpu",
"--diarize", "--hf_token", hf_token,
"--output_dir", TRANSCRIPTS_DIR.to_s,
"--output_format", "txt"