product updateAmazon Web Services

Amazon Nova Multimodal Embeddings adds audio search capabilities to Bedrock

TL;DR

Amazon Nova Multimodal Embeddings, announced October 28, 2025, now supports audio content for semantic search alongside text, images, and video. The model offers four embedding dimension options (3,072, 1,024, 384, 256) and uses Matryoshka Representation Learning to balance accuracy with storage efficiency.

2 min read
0

Amazon Nova Multimodal Embeddings Adds Audio Search to Bedrock

Amazon has expanded Nova Multimodal Embeddings to support audio content, enabling semantic search across audio libraries through unified cross-modal retrieval. The model, available in Amazon Bedrock, processes audio alongside text, documents, images, and video through a single model architecture.

Audio Embedding Architecture

Amazon Nova generates audio embeddings as float32 arrays in four dimension sizes: 3,072 (default), 1,024, 384, and 256. The model uses Matryoshka Representation Learning (MRL), a hierarchical structure that allows truncation without reprocessing. A full 3,072-dimension embedding contains information at all scales—users can extract just the first 256 dimensions and retain accuracy, trading off computation against storage costs.

Audio embeddings encode both acoustic and semantic features: rhythm, pitch, timbre, emotional tone, and semantic meaning. The model processes audio as mel-spectrograms or learned audio features rather than raw waveforms, using temporal convolutional networks or transformer architectures to capture spectro-temporal patterns. Individual audio segments up to 30 seconds preserve temporal context and long-range acoustic dependencies.

Two API Modes

Amazon Nova provides synchronous and asynchronous embedding generation:

Synchronous API (invoke_model): For real-time queries. Users submit search text like "upbeat jazz piano" or an audio clip, receiving embeddings in milliseconds for k-nearest neighbor database searches.

Asynchronous API: For batch processing. Audio files upload to Amazon S3, and the model automatically segments files over 30 seconds with temporal metadata. Embeddings store in vector databases with metadata (filename, duration, genre) for one-time indexing.

Requests specify taskType (SINGLE_EMBEDDING or SEGMENTED_EMBEDDING), embeddingPurpose (GENERIC_INDEX for content, GENERIC_RETRIEVAL for queries, DOCUMENT_RETRIEVAL for documents), embeddingDimension, and truncationMode.

Search Mechanism

Similarity measurement uses cosine similarity between embedding vectors:

similarity = (v₁ · v₂) / (||v₁|| × ||v₂||)

Values range from -1 to 1, with higher values indicating greater semantic similarity. Vector databases convert this to distance (1 − similarity) for k-NN searches, retrieving top-k most similar embeddings.

The approach captures acoustic similarity beyond text transcription. While traditional speech-to-text and metadata tagging focus on linguistic content, audio embeddings encode tone, emotion, musical characteristics, and environmental sounds—enabling users to find audio by acoustic properties rather than spoken words alone.

What This Means

Amazon positions Nova Multimodal Embeddings as a unified solution for cross-modal retrieval, removing the need for separate embedding models per modality. The inclusion of audio search addresses a gap in content libraries where manual transcription and speech-to-text methods miss acoustic nuance. Matryoshka learning reduces operational costs by avoiding reprocessing when adjusting embedding dimensions—a practical advantage for large-scale deployments. The synchronous/asynchronous dual-mode design separates real-time search latency from batch indexing, aligning API patterns with actual workload requirements. Organizations building audio search now have production-ready infrastructure within Bedrock's managed environment.

Related Articles

product update

OpenAI's Jalapeño Inference Chip Beats Nvidia Blackwell on Throughput and Power Efficiency, Company Claims

OpenAI shared the first benchmark results for Jalapeño, its custom inference chip built with Broadcom, at the Hot Chips conference. The company claims the chip beats current Nvidia Blackwell systems on both speed and power efficiency, with limited deployment starting at the end of 2026.

product update

Meta Preps Paid AI Agent 'Hatch' for Launch, Plans New Model 'Watermelon' for October

Meta is preparing to launch Hatch, a consumer AI agent that could cost up to $199.99/month, alongside a new model called Watermelon slated for October. Details come from internal documents cited by The Information, with key specifications still unconfirmed.

product update

Meta Launches Pocket, a Free App for Vibe-Coding Mini Games and Widgets

Meta has launched Pocket, a free app that lets users vibe-code lightweight games, gizmos, and widgets by describing them in plain language. Creations reportedly generate in under a minute and can be shared to a social feed alongside other users' projects.

product update

Google Tests 'Device Help' Gemini Tool Exclusively on Pixel 11 Pro

A new 'Device Help' tool has appeared in the Gemini app's plus menu on Pixel 11 Pro devices running Google app beta 17.52. The Labs-badged feature offers conversational assistance for settings, troubleshooting, and device management, but is not available on the base Pixel 11 or older phones.

Comments

Loading...