product updateAmazon Web Services

Amazon Launches Nova Multimodal Embeddings for Video Semantic Search Across Visual, Audio, and Text Signals

TL;DR

Amazon released Nova Multimodal Embeddings on Amazon Bedrock, a unified embedding model that processes text, documents, images, video, and audio into a shared 1024-dimensional semantic vector space. The model supports up to 30 seconds of video per embedding and enables semantic search across all modalities simultaneously without converting video to text first.

2 min read
0

Amazon Launches Nova Multimodal Embeddings for Video Semantic Search Across Visual, Audio, and Text Signals

Amazon released Nova Multimodal Embeddings on Amazon Bedrock, a unified embedding model that processes text, documents, images, video, and audio into a shared 1024-dimensional semantic vector space for video search applications.

The model supports up to 30 seconds of video per embedding and processes all modalities directly without requiring text conversion. According to Amazon, this approach preserves temporal understanding and avoids information loss that occurs when converting video signals to text through transcription or manual tagging.

Technical Architecture

The reference implementation uses a two-phase architecture. The ingestion pipeline processes uploaded videos through:

  • FFmpeg scene detection to segment video at natural boundaries (targeting 10-second segments with 5-15 second ranges)
  • Parallel processing generating separate 1024-dimensional embeddings for visual and audio content
  • Amazon Transcribe for speech-to-text conversion with timestamp alignment
  • Amazon Rekognition for celebrity detection
  • Amazon Nova 2 Lite for caption and genre generation
  • Indexing into Amazon OpenSearch Service

The search pipeline executes parallel operations:

  • Intent analysis using Claude Haiku to assign relevance weights (0.0-1.0) across visual, audio, transcription, and metadata modalities
  • Query embedding three times for visual, audio, and transcription similarity search
  • Hybrid search combining semantic and lexical signals

Segmentation Strategy

The system uses adaptive scene-based segmentation rather than fixed-length chunks. FFmpeg's scene detection identifies natural visual boundaries, and the algorithm snaps cuts to the nearest scene change within an acceptable window. This produces segments like 8.3s, 11.1s, 9.8s, 12.4s, 7.6s aligned to actual scene boundaries.

According to Amazon, fixed-length segmentation can split scenes mid-action or sentences mid-thought, degrading embedding quality and retrieval precision. The scene-based approach maintains semantic continuity where each segment represents a coherent unit of meaning.

Use Cases

Amazon targets three primary applications:

  • Sports broadcasters surfacing exact moments when players scored for instant highlight delivery
  • Studios finding every scene with specific actors across thousands of archived hours
  • News organizations retrieving footage by mood, location, or event for breaking stories

The model handles complex queries like "a tense car chase with sirens" that require simultaneous visual and audio understanding, or searches for athletes who appear on screen but are never mentioned in dialogue.

Availability

Pricing for Nova Multimodal Embeddings was not disclosed. A complete reference implementation is available on GitHub for deployment on AWS infrastructure including Lambda, Fargate, Step Functions, S3, DynamoDB, OpenSearch Service, and CloudFront.

What This Means

The release addresses a fundamental limitation in video search: existing systems convert all signals to text before indexing, losing temporal context and visual information that text cannot capture. By processing video, audio, and visual data natively in a shared embedding space, the model enables retrieval based on any combination of signals without preprocessing bottlenecks. The 30-second context window and scene-aware segmentation suggest Amazon is prioritizing semantic coherence over simple throughput, though the lack of disclosed pricing makes cost comparison with text-based approaches difficult.

Related Articles

product update

AWS Publishes Reference Architecture for Multimodal WhatsApp Ordering Agents Using Bedrock AgentCore and Nova 2

AWS published a reference architecture showing how to deploy a WhatsApp ordering assistant on Amazon Bedrock AgentCore, using Nova 2 Lite for text and Nova 2 Sonic for voice, with shared cross-channel memory and MCP-based tool access to backend systems.

product update

OpenRouter Adds Auto-Updating Alias for Zhipu AI's GLM Flash Model Family

Z.ai has published GLM Flash Latest on OpenRouter, a routing alias that automatically points to the newest checkpoint in the GLM Flash lineup. It supports a 1.31M token context window and multimodal text, image, and video input at $0.07 per 1M input tokens and $0.25 per 1M output tokens.

product update

t54 Processes 20 Million Autonomous Agent Payments Using Amazon Bedrock AgentCore

t54's x402-secure trust layer, running on Amazon Bedrock AgentCore payments, has processed over 20 million agent-initiated micropayments without human approval. The system uses a deterministic risk-scoring gate to block payments to unsafe endpoints before funds settle.

product update

xAI's Grok Bot Turns Agent Setup Into a Login Screen, No Code Required

xAI's Grok Bot lets users connect agents to services like X, Google Calendar, and Freshdesk through a simple browser login instead of API keys or MCP configuration. A five-day hands-on report compares it to OpenClaw 2.0, released the same week, framing the two as a managed agent computer versus a user-owned agent platform.

Comments

Loading...