For Agents
Just-in-time package S3-stored video assets into HLS, DASH, CMAF, and Smooth Streaming outputs with optional DRM through SPEKE.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AWS Elemental MediaPackage VOD, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with AWS Elemental MediaPackage VOD API.
Create packaging groups that organize related streaming output configurations
Configure HLS, DASH, CMAF, and Microsoft Smooth packaging with bitrate, segment, and DRM options
Register assets pointing to source content in Amazon S3 with associated ARNs
GET STARTED
Use for: I need to create a packaging group for our movie library, Configure an HLS packaging configuration with 6-second segments, Register a new VOD asset stored in s3://content/episode-101.mp4, List all packaging configurations under a packaging group
Not supported: Does not handle live streaming, transcoding, ad insertion, or video upload — use for just-in-time VOD packaging of S3-resident assets only.
Jentic publishes the only available OpenAPI specification for AWS Elemental MediaPackage VOD, keeping it validated and agent-ready. MediaPackage VOD prepares video on demand assets stored in Amazon S3 for delivery in HLS, DASH, CMAF, and Microsoft Smooth Streaming formats. Packaging configurations describe the output streams, packaging groups bundle related configurations, and assets reference the source content to be packaged. The service runs just-in-time, so no transcoded copies sit in storage between requests, and it integrates with AWS Certificate Manager and SPEKE for DRM.
Generate just-in-time HLS, DASH, CMAF, and Smooth playback URLs without pre-packaging
Integrate with SPEKE-compliant key servers for DRM-protected streams
Configure egress access logs and CloudWatch logging on packaging groups
Tag assets, packaging groups, and packaging configurations for cost allocation
Patterns agents use AWS Elemental MediaPackage VOD API for, with concrete tasks.
★ Multi-Format VOD Streaming Library
Streaming services package on-demand titles into HLS for iOS, DASH for Android and web, CMAF for unified adaptive playback, and Smooth for legacy Microsoft clients. MediaPackage VOD does the packaging just-in-time at request, so the storage cost is the source asset alone in S3 and the service generates each manifest on demand. Setup is one packaging group per profile (e.g. 'movies-h264-aac') with one configuration per output format.
Create a packaging group named 'movies-h264-aac', then add an HLS packaging configuration with SegmentDurationSeconds=6 and a DASH configuration with PeriodTriggers=[ADS]
DRM-Protected Premium Content
Studios and OTT services protect premium VOD assets with DRM by attaching a SPEKE key provider configuration to packaging configurations. MediaPackage VOD requests content keys at packaging time, applies AES-128 or sample-AES encryption, and emits DRM-protected manifests for Widevine, PlayReady, or FairPlay. Source assets in S3 stay unencrypted; the encryption is applied at the moment of request.
Create an HLS packaging configuration with HlsPackage.Encryption.SpekeKeyProvider configured against your provider URL and SystemIds for FairPlay and Widevine
Episodic Content Catalog Onboarding
Workflow services that onboard new episodes call CreateAsset for each new file as it lands in S3, register it under a packaging group, and immediately get back manifest URLs ready for the client app. The asset references the SourceArn of the S3 object so MediaPackage VOD can read it on request. No pre-transcoding or pre-packaging step is required — the asset is queryable as soon as the API returns 201.
Call CreateAsset with Id='ep-s01e01', SourceArn='arn:aws:s3:::content/show/ep-s01e01.mp4', and PackagingGroupId='show-h264-aac', then return the EgressEndpoints array of playback URLs
AI Agent Media Operations
Operations agents call MediaPackage VOD through Jentic to register newly uploaded assets, audit packaging configurations, and surface playback URLs to downstream catalogs. Jentic isolates the AWS access keys and exposes the asset, packaging group, and packaging configuration operations as discoverable tools, so the agent can react to S3 upload events without learning the AWS SDK.
Search Jentic for 'register a vod asset', load the CreateAsset operation, and execute it with the new SourceArn and target PackagingGroupId from the upload event
17 endpoints — jentic publishes the only available openapi specification for aws elemental mediapackage vod, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/packaging_groups
Create a packaging group
/packaging_groups
List all packaging groups
/packaging_configurations
Create a packaging configuration
/assets
Register a new VOD asset
/assets/{id}
Describe a VOD asset and its egress endpoints
/packaging_groups/{id}/configure_logs
Configure egress access logs on a packaging group
/packaging_configurations/{id}
Delete a packaging configuration
/packaging_groups
Create a packaging group
/packaging_groups
List all packaging groups
/packaging_configurations
Create a packaging configuration
/assets
Register a new VOD asset
/assets/{id}
Describe a VOD asset and its egress endpoints
Three things that make agents converge on Jentic-routed access.
Credential isolation
AWS keys are stored encrypted in the Jentic vault. Each MediaPackage VOD call is signed with Signature Version 4 server-side, so the agent never holds raw keys, and IAM scoping limits which packaging groups and assets it can touch.
Intent-based discovery
Agents search by intent (e.g. 'register a vod asset' or 'create a packaging configuration') and Jentic returns matching MediaPackage VOD operations with their input schemas, including the SPEKE configuration shape required for DRM.
Time to first call
Direct integration: 1-3 days for IAM roles, S3 read permissions, and SDK plumbing. Through Jentic: under an hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using AWS Elemental MediaPackage VOD API through Jentic.
Why is there no official OpenAPI spec for AWS Elemental MediaPackage VOD?
AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AWS Elemental MediaPackage VOD via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the MediaPackage VOD API use?
The API uses AWS Signature Version 4 (HMAC) with an access key ID and secret access key. IAM policies must allow mediapackage-vod actions and s3:GetObject on the source bucket so the service can read VOD content for packaging. Through Jentic, the keys live in the encrypted vault and Jentic signs each request server-side.
Can I configure DRM with the MediaPackage VOD API?
Yes. When creating an HLS, DASH, CMAF, or Smooth packaging configuration, set the Encryption.SpekeKeyProvider object with your SPEKE-compliant key server URL, the RoleArn that can call it, and the SystemIds for the DRM systems you support (Widevine, PlayReady, FairPlay).
What are the rate limits for the MediaPackage VOD API?
AWS does not document explicit per-second limits for control-plane operations in this spec. Soft quotas apply to the number of packaging groups, configurations per group, and assets per account — see the AWS service quotas console for current values in your region.
How do I register a new VOD asset through Jentic?
Search Jentic for 'register a vod asset' to surface POST /assets. Load the schema with the Jentic SDK (pip install jentic), then execute it with the Id, SourceArn pointing at your S3 object, SourceRoleArn that grants read access, and the target PackagingGroupId. The response contains EgressEndpoints with playback URLs.
Is AWS Elemental MediaPackage VOD free?
No. MediaPackage VOD charges per GB processed for packaging and per GB egressed to viewers, with separate rates for HLS, DASH, and other formats. Standard CloudFront and S3 charges apply to the rest of the delivery path. See the AWS Elemental MediaPackage pricing page for current rates.
/packaging_groups/{id}/configure_logs
Configure egress access logs on a packaging group
/packaging_configurations/{id}
Delete a packaging configuration