export function isRecordingTooShort(durationMs?: number): boolean {
  return (durationMs ?? 0) < 500;
}
