概要
Gemini 3.5 Live Translate, released June 9, 2026, is Google DeepMind's specialized audio-to-audio translation model built on the Gemini 3 Pro architecture. Unlike traditional cascaded pipelines (speech-to-text → machine translation → text-to-speech), it processes audio natively—accepting 16kHz PCM chunks and outputting 24kHz translated speech in near real-time. The model auto-detects 70+ languages and preserves the speaker's vocal characteristics, producing translated audio that sounds substantially more natural than generic TTS reading a translation aloud. It ships simultaneously across Google Translate (consumer), Google Meet (enterprise), and the Gemini Live API (developer), giving Google an unmatched distribution advantage in the live translation space.
The model represents a fundamental architectural shift in how translation is delivered. Rather than being a feature bolted onto existing products, it positions translation as an ambient capability—a layer that sits inside conversations, meetings, and apps. Google's integration with partners like Grab (10M+ monthly voice calls), Agora, LiveKit, and Pipecat signals that the long-term vision is embedded translation infrastructure, not a standalone translator app. At ~$0.037 per minute of translated conversation, the economics are viable for high-value business use cases while remaining accessible to developers through a free tier in Google AI Studio.
However, the model card is refreshingly honest about limitations. Voice consistency degrades in multi-speaker sessions, language detection struggles with accents and similar language pairs, and the irreversible audio commitment means late-resolving syntax (common in Mandarin, Japanese) can produce factual inversions. The absence of streaming text output, per-speaker attribution, and mid-utterance revision makes it unsuitable for use cases requiring verbatim records or speaker disambiguation. This is a model optimized for fluid conversational translation—not transcription, not summarization, and not the kind of editable output that enterprise compliance workflows demand.
ベンチマーク&性能
Gemini 3.5 Live Translate was evaluated by Google DeepMind across three dimensions: translation quality (AutoMQM error-based metric), latency (initial and word-level), and speech naturalness. Google has not published external benchmark numbers; all publicly available comparative data comes from independent testing.
The LiveLingo 2026 benchmark (120 utterances, 4 language pairs: en→es, en→zh-CN, en→ja, en→de, scored by GPT-4o + Gemini 2.5 Flash judges) provides the most comprehensive independent comparison:
| System | Comprehension (0–5) | Utterance-End → Translation Arrival | Speed to First Output | Output Surface |
|---|---|---|---|---|
| LiveLingo | 4.96 | 1,518 ms | — | Streaming text + audio |
| **Gemini 3.5 Live Translate** | **4.93** | **~3,100 ms (drifts to 13.9s)** | **2,947 ms** | **Audio (text sidecar)** |
| Google Cloud STT v2 + Translate v3 | 4.77 | ~26,736 ms | — | Transcript |
| Azure Speech Translation | 4.65 | ~4,755 ms | — | Transcript |
| Whisper + GPT-4o-mini | 4.63 | 2,720 ms | — | Transcript |
| OpenAI gpt-realtime-translate | 4.53 | ~3,800 ms (drifts to 20.3s) | 711 ms | Audio + transcript |
*Source: livelingo.io/research/benchmark-2026 — Independent benchmark by LiveLingo Research. Note: LiveLingo has a financial interest as a competing product.*
**Key performance observations:**
- **Highest comprehension score** among streaming translation systems (4.93/5), narrowly behind LiveLingo's text+audio pipeline (4.96/5).
- **Consistent first-audio latency** of ~2.9s (p10–p90: 2,859–3,104 ms), described by Google as "a few seconds behind."
- **Code-switch failure**: On a Mandarin clip that switches to English at 86 seconds, translation output stops entirely—silently dropping the final ~28% of content with no error surfaced.
- **Factual inversion on late-resolving syntax**: A Mandarin sentence about a 15% sales increase was rendered as a *goal* to increase sales by 15%—the polarity carried by the verb at sentence end was resolved wrong.
Google's internal evaluation uses AutoMQM (error-based automatic metric) for translation quality and word-level latency measurement. Neither metric has published numerical results.
*Note: Traditional LLM benchmarks (Arena Elo, SWE-Bench, GPQA) are not applicable to this model as it is a specialized audio-to-audio translation system, not a general-purpose language model.*
詳細比較
**Gemini 3.5 Live Translate vs. OpenAI gpt-realtime-translate**
Both are audio-to-audio streaming translation models released in the same timeframe. Gemini delivers higher comprehension (4.93 vs. 4.53) and more consistent latency (~2.9s vs. 3.8s with drift to 20.3s). OpenAI's model outputs both audio and transcript, while Gemini's translation mode is audio-only with text as a sidecar. Both exhibit the same code-switch silence behavior when source audio switches into the target language. Pricing for Gemini is $3.50/$21.00 per 1M input/output tokens (~$0.037/min); OpenAI's pricing was not publicly comparable at the time of the benchmark. Gemini has a distribution advantage through Google Translate and Google Meet; OpenAI's model is API-first.
**Gemini 3.5 Live Translate vs. Apple Live Translation (AirPods)**
Apple's approach is device-centered and privacy-centered: language models download to the iPhone and process on-device, keeping conversation data local. Apple supports ~20 languages vs. Gemini's 70+, and Apple's voice modeling is more limited. Gemini requires cloud connectivity (5G/Wi-Fi); Apple works offline after model download. The philosophical difference: Apple prioritizes privacy and hardware integration; Google prioritizes language scale and distribution breadth. For casual travel translation on Apple devices, AirPods integration is more frictionless. For multilingual meetings and developer applications, Gemini's API and Meet integration are unmatched.
**Gemini 3.5 Live Translate vs. Microsoft Teams Interpreter**
Microsoft's Interpreter is built into Teams for Microsoft 365 Copilot users, supporting real-time speech-to-speech interpretation with 20 hours per person per month included in the Copilot license. It currently supports a smaller set of output languages than Gemini's 70+. Microsoft's advantage is native enterprise meeting integration within the Microsoft 365 ecosystem. Google's advantage is cross-platform distribution (Translate app on any phone, API for any developer, Meet for Workspace). For organizations already on Microsoft 365, Teams Interpreter requires zero additional setup. For organizations using multiple platforms or needing API access, Gemini is more flexible.
**Gemini 3.5 Live Translate vs. Traditional Cascade Pipelines (STT + MT + TTS)**
The cascade approach (e.g., Whisper + GPT-4o-mini + TTS) scored 4.63/5 comprehension with 2,720ms latency—competitive on speed but meaningfully lower on translation quality. Cascade pipelines offer more control: each component can be swapped, transcripts are native to the pipeline, and output can be revised before speech synthesis. Gemini's single-model approach simplifies integration (one API call vs. three) and produces more natural audio, but sacrifices editability and introduces irreversible commitment errors on languages with late-resolving syntax.
**Pricing comparison (developer API, estimated per-minute costs):**
| System | Est. Cost/Minute | Languages | Text Output | Audio Quality |
|---|---|---|---|---|
| Gemini 3.5 Live Translate | ~$0.037 | 70+ | Sidecar only | Natural prosody |
| Whisper + GPT-4o-mini + TTS | ~$0.01-0.03 | 100+ (Whisper) | Native | Generic TTS |
| Azure Speech Translation | ~$0.02-0.04 | 60+ | Native | Generic TTS |
コミュニティ評価
Developer and community reactions to Gemini 3.5 Live Translate have been mixed—impressed by the voice quality, frustrated by the architectural constraints.
**Positive reception** has centered on the natural-sounding voice output. The prosody preservation is widely acknowledged as a meaningful step change from robotic TTS reading translations. Grab's public testing partnership (10M+ monthly calls) and integrations with Agora, LiveKit, Pipecat, Fishjam, and Vision Agents signal strong platform-level adoption. Partners CJ ENM and LiveKit provided positive launch-day testimonials praising quality, accuracy, and low latency.
**Critical feedback** from developers and early testers highlights several pain points:
- **Turn detection failures**: Multiple developers report that the model doesn't reliably detect end-of-sentence, causing translations to run on or get cut off. One Reddit commenter noted: "it doesn't have an end sentence tag so you can talk and never hear the end because it doesn't know you finished speaking only after you start speaking again."
- **Translation accuracy concerns**: An early tester A/B-ing against standard Google Translate found *worse* accuracy on simple sentences—"Are you going to take care of the hotel reservations and flights?" translated to "Are you going to take care of the fishermen and fights?" in Spanish.
- **Social friction in multi-person settings**: A LinkedIn reviewer noted it "works best when everyone in the room is using the same tool" and that multi-person conversations "still feel like they're at the edge of progress."
- **Developer API constraints**: The translation mode's lack of text input, tool use, and system instructions frustrated developers expecting the full Gemini Live API surface. The 15-minute audio session cap (extendable) was also noted as limiting for long meetings.
- **Desktop/workflow gap**: The phone-first consumer path and Meet-only enterprise path leave a significant gap for Zoom and Teams users on laptops, a point multiple third-party comparison articles highlight.
**Adoption patterns** show the model being most readily adopted by: (1) developers building vertical translation products via the Live API, (2) Google Workspace customers with Meet access, and (3) casual travelers through the Translate app. Enterprise adoption is gated by the Meet private preview status, with broader rollout expected later in 2026.
ユースケース
**1. International Travel and Face-to-Face Conversation**
The most natural fit. A traveler in Sardinia negotiating with a seafood shack owner, navigating a Japanese train station, or explaining food allergies in Florence. The Google Translate app integration with Android's new listening mode (hold phone to ear, hear translation through earpiece) removes friction. Best for: casual, forgiving conversations where tone matters and mistakes are recoverable. When to choose over alternatives: when you want the most natural-sounding voice output and you're already in the Google ecosystem. Avoid for: high-stakes interactions (medical, legal) where mistranslation has real consequences.
**2. Multilingual Customer Support Calls**
A support agent who speaks only English can serve callers in 70+ languages via live speech translation. At ~$0.037/min, a 10-minute support call costs ~$0.37—economically viable at scale. Grab is already testing this at 10M+ monthly voice calls. Best for: short, practical conversations (pickup coordination, order issues, account questions) where the conversation structure is predictable. When to choose over alternatives: when you need voice-to-voice, not text-based support, and your volume justifies API integration. Avoid for: billing disputes, legal escalations, or medical inquiries where human bilingual agents or review workflows are required.
**3. Google Meet Enterprise Meetings**
Expands Meet from 5 languages to 70+ with 2,000+ pair combinations per session. A Japanese engineer speaks Japanese, a Brazilian sales lead speaks Portuguese, and everyone follows along. Best for: internal team meetings where participants are comfortable with AI translation and the stakes of mistranslation are moderate. When to choose over alternatives: when your organization is Google Workspace-native and you need the simplest deployment path. Avoid for: client-facing negotiations, board meetings, or any session requiring verbatim records—there's no per-speaker attribution and no streaming text transcript.
**4. Developer-Embedded Translation in Vertical Apps**
Using the Gemini Live API to build translation into rideshare apps, hospitality concierge systems, telehealth intake, online tutoring, gaming voice chat, or live event dubbing. The API model (`gemini-3.5-live-translate-preview`) accepts audio streams and handles language detection automatically. Best for: applications where translation is a component of a larger workflow (not the entire product), and where audio-only output meets requirements. When to choose over alternatives: when simplifying the STT→MT→TTS chain into one API call matters more than fine-grained control, and when natural voice output is a differentiator. Avoid for: applications requiring editable text output, speaker diarization, or integration with Google's tool-calling ecosystem (not supported in translation mode).
最新ニュース
• **June 9, 2026**: Official launch across three surfaces—Google Translate app (Android/iOS), Google Meet (private preview for select Workspace customers), and Gemini Live API/Google AI Studio (public preview).
• **June 9, 2026**: Integrations announced with real-time media platforms Agora, Fishjam, LiveKit, Pipecat, and Vision Agents for developer deployment.
• **June 9, 2026**: Grab confirmed as launch partner testing the model for driver-passenger communication across 10M+ monthly voice calls.
• **June 9, 2026**: Google Meet speech translation expanded from 5 languages to 70+ with 2,000+ combinations, replacing the previous English-pivot-only system.
• **June 9, 2026**: Android users gain new "listening mode" that routes translated audio through the phone's earpiece without requiring headphones.
• **June 2026**: Google AI Studio testing is free; paid API pricing set at $3.50/1M input tokens, $21.00/1M output tokens. Billing runs at 25 audio tokens per second.
• **June 2026**: Enterprise Meet rollout is gated to Business Standard and Plus, Enterprise Standard and Plus, and Frontline Plus Workspace plans. Broader rollout targeted for later in 2026.
• **No announced changes** to pricing tiers, language expansion beyond 70+, or offline capability as of the available sources.
• **Notable gap**: Google has not released its own benchmark scores, language-pair results, latency figures, or comparative performance data, limiting independent assessment per Slator's coverage.