Kiln is a VOD transcoder you run in your own AWS account. It chops a mezzanine into chunks, encodes them in parallel on Spot, and writes HLS/DASH to your S3. Flat subscription-no per-minute bill.
Kiln is a video transcoding and packaging pipeline for AWS. You subscribe on Marketplace, deploy it into your own account, and it keeps every frame on your buckets under your keys.
It cuts a mezzanine into segment-aligned chunks and encodes them in parallel across EC2 Spot capacity in your VPC. You pay a flat monthly subscription plus the Spot bill. Nobody meters your output minutes. At the volume each tier is sized for, that usually comes out cheaper and faster than MediaConvert on the same ladder. Run the numbers on your catalogue before you commit.
Output is CMAF for HLS and DASH together. Media stays in-account, which matters if you carry TPN, CDSA, or MovieLabs obligations. Quick-start is CloudFormation plus Helm; target is a first job in about thirty minutes. Growth includes a 30-day trial.
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.
Pricing is based on the duration and terms of your contract with the vendor. This entitles you to a specified quantity of use for the contract duration. If you choose not to renew or replace your contract before it ends, access to these entitlements will expire.
Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator to estimate your infrastructure costs.
Up to 4 concurrent workers. H.264 encode on Spot, fixed ladder presets, CMAF packaging for HLS and DASH, thumbnails, MediaConvert job-JSON translator, and shadow invoice events. Built for one team running a web VOD pipeline.
$500.00
Growth
Up to 16 concurrent workers. Everything in Starter, plus HEVC via a mounted encoder build, per-title ladders, the in-product VMAF benchmark, captions, and multi-language audio. Includes a 30-day free trial.
$800.00
Scale
Up to 64 concurrent workers. Everything in Growth, plus AV1, SPEKE v2 DRM (Widevine, FairPlay, PlayReady), burn-in watermarking, priority queues, and per-rung key separation.
You buy Kiln as a contract tier, priced by the number of concurrent workers you can run. The three tiers stack: Starter supports up to 4 workers, Growth up to 16, and Scale up to 64. Each tier includes everything in the one below it, then adds more encoding features and capabilities. Concurrency sets your throughput ceiling, not your output volume — there is no per-minute metering. You pick a tier based on how many jobs you need to run in parallel. Growth includes a 30-day free trial. Contracts run monthly or annually.
Top-of-mind questions for buyers
What counts as one concurrent worker for billing?
A worker is a compute instance that encodes chunks in parallel. Kiln cuts each source into segment-aligned pieces and runs them across Spot instances. Your tier caps how many run at once: 4 on Starter, 16 on Growth, 64 on Scale. Workers run inside your own AWS account.
Does my tier limit how much video I can transcode each month?
No. Tiers cap concurrent workers only, not output volume. There is no per-minute metering, no output-minute counter, and no phone-home usage tracking. Concurrency sets your throughput ceiling — how many jobs run in parallel — while total titles processed stays uncapped within your active workers.
What does the tier NOT cover — what compute costs apply beyond the subscription?
The subscription is flat per tier. Separately, you pay for the Spot compute your workers use inside your account, plus a small on-demand tail when chunks lose Spot capacity repeatedly. Storage, egress, and the control-plane instances Kiln runs on are also your account's costs, not part of the tier fee.
robertokiln.com
Helpful?
Vendor refund policy
Kiln is sold as a monthly or annual Marketplace subscription. Because it runs in your AWS account, we do not refund for unused capacity or Spot spend.
If you were charged in error, or cannot install after a good-faith try during the first 14 days of a paid term, email support@robertokiln.com with your AWS account ID and Marketplace subscription ID. We review refund requests within 5 business days.
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.
Containers are lightweight, portable execution environments that wrap server application software in a filesystem that includes everything it needs to run. Container applications run on supported container runtimes and orchestration services, such as Amazon Elastic Container Service (Amazon ECS) or Amazon Elastic Kubernetes Service (Amazon EKS). Both eliminate the need for you to install and operate your own container orchestration software by managing and scheduling containers on a scalable cluster of virtual machines.
Version release notes
What you get
Single kiln image for api, scheduler, worker, and CLI
Chunk-parallel VOD encode path with CMAF packaging (HLS and DASH)
Postgres-backed job and lease store
MediaConvert CreateJob JSON translator
Shadow invoice helpers and a support-bundle command
Helm chart under deploy/helm/kiln
Docker Compose stack for a local or eval install
Image
709825985650.dkr.ecr.us-east-1.amazonaws.com/r-erto/klin:1.0.0
Also tagged :latest
Need: Marketplace subscription, Docker Compose or Kubernetes+Helm, Postgres, shared object volume. Kiln runs in your account. Media stays on your storage.
DOCKER COMPOSE (fastest)
Save as docker-compose.yml (replace IMAGE with the URI above):
Login and run:
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 709825985650.dkr.ecr.us-east-1.amazonaws.com
docker compose up -d
docker compose exec api kiln version
docker compose exec api kiln health
docker compose exec api kiln ladders
docker compose exec api kiln submit --wait --new-id /etc/kiln/job.json
docker compose exec api kiln jobs
docker compose exec api kiln cluster
docker compose exec api kiln status JOB_ID
docker compose exec api kiln invoice JOB_ID
docker compose exec api kiln translate /etc/kiln/mediaconvert-job.json
docker compose exec api kiln support-bundle /tmp/kiln.tgz
Stop: docker compose down -v
Samples in image: /etc/kiln/job.json and /etc/kiln/mediaconvert-job.json
ONE CONTAINER (Postgres required)
docker compose up -d postgres
docker run --rm -p 8080:8080
-e KILN_DSN='postgres://kiln:kiln@host.docker.internal:55432/kiln?sslmode=disable'
-e KILN_LISTEN=:8080 -e KILN_DATA_DIR=/var/kiln/objects
-e KILN_TIER=starter -e KILN_ENCODER=fake
IMAGE run
KUBERNETES
helm upgrade --install kiln ./deploy/helm/kiln
--set image.repository=709825985650.dkr.ecr.us-east-1.amazonaws.com/r-erto/klin
--set image.tag=1.0.0 --set tier=starter
--set data.storageClassName=EFS_OR_NFS_RWX_CLASS
Object PVC must be ReadWriteMany. Set tier to starter, growth, or scale.
kubectl port-forward svc/kiln-api 8080:8080
kubectl exec -it deploy/kiln-api -- kiln submit --wait --new-id /etc/kiln/job.json
COMMANDS
api | scheduler | worker | run
submit [--wait] [--new-id] SPEC.json
status | cancel | health | ladders | jobs | chunks | cluster
invoice | translate | support-bundle | version
HTTP API on KILN_LISTEN (default :8080).
ENV VARS
KILN_DSN (required), KILN_LISTEN, KILN_API_URL, KILN_DATA_DIR,
KILN_TIER (starter|growth|scale), KILN_ENCODER (fake for eval),
KILN_NODE_ID, KILN_WORKER_SLOTS, KILN_GPU
IF STUCK
kiln health
kiln cluster
kiln status JOB_ID (leased=0 + high pending usually means workers cannot poll or bad DSN)
kiln support-bundle /tmp/kiln.tgz then email support@robertokiln.com
NOTE: Fake encoder is for install checks. For production, give workers ffmpeg/codecs and set KILN_ENCODER for production. More: https://robertokiln.com/
Email and web form support for install, jobs, and Marketplace subscription issues
We reply within 24 hours on business days
For locked-down VPCs, send a kubectl kiln support-bundle tarball with your email so we can help without needing outbound access from your cluster
Scope
Starter, Growth, and Scale: email support as above
Enterprise: same channels, plus contractual support-bundle SLA and version-window terms in the private offer
We do not offer phone support on the public listing. Use the form or email and we will get back to you.
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.
The global metal magnesium market size was worth around USD 4.3 billion in 2021 and is predicted to grow to around USD 6.45 billion by 2028 with a compound annual growth rate (CAGR) of roughly 5.45% between 2022 and 2028.
The global Ceramic Machinery Market size is predicted to reach $7.31 billion, with a CAGR of 5% by 2030. The rapid expansion of the construction industry is significantly driving the demand for ceramic products such as tiles, sanitary ware, and architectural elements, which in turn fuels the growth of the market.
Processed Animal Protein Market By Form (Solid And Liquid), By Source (Pork, Beef, Poultry, And Others), And By Region - Global And Regional Industry Overview, Market Intelligence, Comprehensive Analysis, Historical Data, And Forecasts 2022 – 2028
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.