zero-knowledge file sharing
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

force iOS Safari audio recording format

Juliet f8b3f6ff 5eb8b675

+7 -1
+7 -1
web/src/pages/Upload.tsx
··· 23 23 type Status = "idle" | "encrypting" | "uploading"; 24 24 type View = "result" | "uploading" | "file" | "empty" | "recording"; 25 25 26 - const REC_MIMES = ["audio/webm;codecs=opus", "audio/webm", "audio/mp4", "audio/ogg;codecs=opus"]; 26 + const isIOS = 27 + typeof navigator !== "undefined" && 28 + (/iPad|iPhone|iPod/.test(navigator.userAgent) || 29 + (navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1)); 30 + const REC_MIMES = isIOS 31 + ? ["audio/mp4", "audio/webm;codecs=opus", "audio/webm", "audio/ogg;codecs=opus"] 32 + : ["audio/webm;codecs=opus", "audio/webm", "audio/mp4", "audio/ogg;codecs=opus"]; 27 33 function pickRecMime(): string | null { 28 34 const MR = (window as any).MediaRecorder; 29 35 if (!MR) return null;