Deploy a production-ready, self-hosted speech-to-text server on AWS EC2. Convert audio into accurate text via a web UI, a REST API, or batch folder conversion over S3, authenticated with your own accounts or API tokens. Uses a GPU automatically when present, falls back to CPU otherwise. All processing stays in your AWS account.
This product provides a fully self-hosted speech-to-text server packaged as an
Amazon Machine Image (AMI) for AWS EC2 and as a container image. The server
converts audio files into text and exposes both a web interface and a simple
HTTP REST API. All processing occurs within the customer's AWS environment.
The AMI launches with a guided browser setup wizard over HTTPS (port 443).
You confirm ownership with the EC2 instance ID, create an administrator
account, pick a certificate option, and select a Whisper model. No SSH or
user-data editing is required for credentials. After setup, the admin
account can add users and issue API tokens from /admin - no need
to share one password for automation. HTTP Basic auth with any account
still works. GPU instances (for example g4dn.xlarge) enable CUDA
automatically; CPU instances still work.
The Marketplace container image authenticates with a PASSWORD environment
variable over HTTP on port 8080 and auto-detects a CUDA GPU at startup
(pass --gpus all to enable it), falling back to CPU otherwise.
A Batch tab handles whole folders rather than one file at a time. Point it
at an S3 bucket from /admin, and it becomes a file browser over that bucket:
upload audio, queue transcriptions, and get a sidecar transcript written
back beside each source file. Nothing leaves the instance and the bucket
stays in your account. Without a bucket configured, any writable directory
bind-mounted at /data works the same way.
Common use cases include call center transcription, media and meeting
transcription, bulk back-catalogue conversion, compliance-sensitive audio
processing, and private speech analytics pipelines.
Whisper models
base.en is the default and the only model baked into the image, so the
server transcribes English out of the box with no download. Sixteen
checkpoints are selectable in total - from the Model tab in /admin on the
AMI, or by running /app/scripts/download-ggml-model.sh into a mounted
/app/models volume and setting WHISPER_MODEL on the container. Models
ending in .en are English-only; the rest are multilingual.
tiny, tiny.en (39M, ~1 GB VRAM) - the smallest checkpoints; suited to
drafts and keyword spotting rather than final transcripts
base (74M, ~1 GB VRAM) - small multilingual, fine for short clips
base.en (74M, ~1 GB VRAM) - the default; good English accuracy, small
footprint, and the only model that needs no download
small, small.en (244M, ~2 GB VRAM) - noticeably better than base
small.en-tdrz (244M, ~2 GB VRAM) - small.en with tinydiarize speaker
turns; required for the Diarize option in the UI
medium, medium.en (769M, ~5 GB VRAM) - strong accuracy, needs a full GPU
large-v1, large-v2, large-v3 (1550M, ~10 GB VRAM) - the full-size
checkpoints; the largest and slowest of the set
large-v2-q5_0, large-v3-q5_0 (1550M quantized, ~6 GB VRAM) - most of the
quality at roughly half the disk and VRAM
large-v3-turbo (809M, ~6 GB VRAM) - close to large-v3 quality at
roughly half the parameters
Selecting any model other than base.en downloads it from huggingface.co, so
the instance or container needs outbound internet access at that point.
Transcription itself never sends audio anywhere.
Highlights
Transcribe calls, meetings, and media in your VPC - audio never leaves your AWS account
Add users and revocable API tokens from /admin - not one shared password like most AMI listings
HTTPS wizard, automatic GPU or CPU, and a Batch tab for whole S3 folders
AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
Try this product free for 5 days according to the free trial terms set by the vendor. Usage-based pricing is in effect for usage beyond the free trial terms. Your free trial gets automatically converted to a paid subscription when the trial ends, but may be canceled any time before that.
Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator to estimate your infrastructure costs.
If you are an AWS Free Tier customer with a free plan, you are eligible to subscribe to this offer. You can use free credits to cover the cost of eligible AWS infrastructure. See AWS Free Tier for more details. If you created an AWS account before July 15th, 2025, and qualify for the Legacy AWS Free Tier, Amazon EC2 charges for Micro instances are free for up to 750 hours per month. See Legacy AWS Free Tier for more details.
You pay by the hour for the EC2 instance you run the Speech-to-Text Server AMI on. Each dimension maps to one instance type, so your rate depends on the hardware you pick, not on software features. Options span general-purpose (M, T families), compute-optimized (C families), memory-optimized (R families), high-performance compute (HPC), and GPU instances (G and P families). Larger sizes carry more CPU, memory, or GPU and cost more per hour. GPU instances enable CUDA automatically for faster transcription; CPU instances also work. You are billed only while an instance runs.
Top-of-mind questions for buyers
What does one billing unit cover, and what am I paying for each hour?
Each dimension is one EC2 instance type, billed per hour the instance runs. The rate reflects the hardware — vCPUs, memory, and any GPU — not per-user or per-transcription charges. You add users and issue API tokens from the admin page without extra software fees.
Am I charged when the instance is stopped or idle?
Hourly software charges accrue only while the instance runs. When you stop the instance, software charges stop. Underlying AWS storage or other resources may still bill separately under your AWS account, but the AMI software meters running time only.
How do GPU instances differ from CPU instances for my transcription workload?
GPU instances, such as the G and P families, enable CUDA automatically at startup for faster transcription. CPU-only instances still run the server without a GPU. Both work; your choice affects the hourly rate and processing speed, not which software features you receive.
www.sigmodata.com
Helpful?
Vendor refund policy
Refunds are handled in accordance with AWS Marketplace refund policies. Buyers may request a refund within 48 hours of initial purchase or launch if the product does not function as described on supported EC2 instance types. To request a refund or support, contact support@sigmodata.com
How can we make this page better?
Tell us how we can improve this page, or report an issue with this product.
Give us feedbackReport a problem with this product or seller
Legal
Vendor terms and conditions
Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA).
Content disclaimer
Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
BREAKING CHANGE: user-data no longer configures credentials, HTTPS, or
port (ENABLE_HTTPS and PORT are ignored). The AMI now serves HTTPS on
443 instead of HTTP on 8080, and the instance ID is no longer the API
password - a setup wizard confirms ownership, then you create an
administrator account. Optional MODEL= still prefills the wizard.
Configure TLS and the Whisper model in the wizard or at /admin. Update
security groups, bookmarks, and load balancers.
New: add users and revocable API tokens from /admin - no more
sharing one password with every script or CI job. HTTP Basic auth still
works.
New: automatic CUDA on GPU instances (g4dn.xlarge recommended); CPU
instances still work with no extra configuration
Fix: CUDA-linked whisper.cpp now starts on CPU instances (libcuda.so.1 stub)
New: Caddy TLS reverse proxy with a self-signed default and optional
Let's Encrypt
Built on the AWS ECS GPU-optimized AMI (Amazon Linux 2023)
Additional details
Usage instructions
Launch g4dn.xlarge (recommended) with inbound TCP 443 and 22.
CPU alternatives: t3.xlarge, m7i.xlarge.
Open https://<instance-address>/ in a browser. The certificate is
self-signed at this point, so your browser will warn you once.
Enter the instance ID shown in the EC2 console to confirm ownership.
Complete the setup wizard: administrator account, certificate option,
Whisper model (default base.en), optional S3 bucket for the Batch tab.
Transcribe at https://<instance-address>/, or POST /inference with
an API token (create one at /admin -> API access; recommended for
scripts and CI) or HTTP Basic auth with any account.
Optional Batch tab: set an S3 bucket at /admin -> Storage
(IAM instance role).
Port 80 is not required. Let's Encrypt validation uses port 443.
Manage the instance, users, and tokens later at
https://<instance-address>/admin.
Support description:
Email aws-support@sigmodata.com or https://www.sigmodata.com/contact. We help with AMI launch, the HTTPS wizard, GPU or CPU operation, the web UI, REST API, and batch transcription. We reply within one business day, Monday through Friday, US Pacific time.
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
Deploy a production-ready, self-hosted speech-to-text server on AWS EC2. Convert audio into accurate text via a web UI, a REST API, or batch folder conversion over S3, authenticated with your own accounts or API tokens. Uses a GPU automatically when present, falls back to CPU otherwise. All processing stays in your AWS account.
Transform audio into text in real-time with our REST API and bidirectional (HTTP/2) streaming API. Built for applications requiring immediate speech processing with minimal delay.
Whisper speech-to-text as a SageMaker model package. Send a WAV, MP3, or JSON (base64) payload and receive a transcript. Runs on CPU; uses a GPU automatically when you deploy on a GPU instance.
Be the first to review this product. We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.