fix: keep audio transcript echo off-by-default and tiny-audio-safe (#32150)

This commit is contained in:
Peter Steinberger
2026-03-02 21:48:08 +00:00
parent 8f995dfc7a
commit 8e259b8310
3 changed files with 5 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ let suiteTempMediaRootDir = "";
async function createTempAudioFile(): Promise<string> {
const dir = await fs.mkdtemp(path.join(suiteTempMediaRootDir, "case-"));
const filePath = path.join(dir, "note.ogg");
await fs.writeFile(filePath, Buffer.from([0, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8]));
await fs.writeFile(filePath, Buffer.alloc(2048, 0xab));
return filePath;
}