Local or Server-Side Audio: Choices Across Four Real Products

“Needs microphone permission” and “needs to upload recordings” are two different things. Local processing offers greater privacy and lower latency but may not handle every task; server-side processing is more uniform but carries clearer data responsibilities.

Start with What the Task Needs, Not the Technology

Real-time pitch feedback needs to update the screen within tens to hundreds of milliseconds, while the raw audio has no long-term value. A complete voice report, however, requires consistent decoding and more complex feature aggregation, and device differences can make browser-only computation difficult to keep consistent. Choosing where to process audio should address five questions at once: latency, compute cost, consistency, failure recovery, and data minimization.

Four Real-World Paths Across the CVoice Family

AppProcessing LocationWhy This Choice
FrostNoteLocal Pitch Detection in the BrowserNeeds a real-time trajectory; the server does not need raw recordings or frame-by-frame data
MelodyCanvasLocal Browser Synthesis and SchedulingInput is drawn lines rather than a microphone; playback should respond immediately to edits
CVoiceServer-Side Analysis After UploadProcess multiple file formats consistently and generate a complete voice-impression report
CVoice InsightQueued Server-Side AnalysisLonger processing chain requiring task recovery and consistent report generation

“Local” does not automatically mean safe, and “server-side” does not automatically mean abusive. The real question is whether only the data necessary for the task is collected and whether the page honestly explains its lifecycle.

Responsibility Begins After Upload

A server-side path must at minimum address transport encryption, temporary-file naming, access isolation, cleanup after success and failure, recovery from abnormal interruption, and maximum retention time. CVoice uses raw recordings only for the current analysis and deletes them after completion or failure. Insight retains task state for queues and abnormal recovery, with a maximum cleanup boundary for raw files left behind unexpectedly. Generated structured results and raw audio must also be described separately; a vague statement such as “we protect your privacy” is not enough.

Local processing still requires stopping microphone tracks when not in use, releasing in-memory recordings, and avoiding unrelated identification using device characteristics. FrostNote’s anonymous statistics include only card, duration, accuracy band, and deduplication information—not raw recordings, voiceprints, or frame-by-frame pitch.

How Users Can Judge Whether a Voice Site Is Transparent

  1. Is microphone access requested automatically on page entry, or only after an explicit action?
  2. Is audio processed only in the browser, or is it sent to a server?
  3. How long are raw recordings, analysis results, and anonymous statistics retained separately?
  4. How is data cleaned up after failures, page closure, or server restarts?
  5. Will results be played publicly, appear on leaderboards, or be provided to third parties?
Our PrincipleFeatures can be complex, but data explanations must be simple. If you cannot explain in plain language why a piece of data is needed and how long it will be kept, you should reconsider whether it needs to be collected at all.