Skip to main content

Try Topaz Hyperion HDR in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: topazlabs-hyperion-hdr-video Topaz Hyperion is an HDR video model that converts SDR footage into HDR with selectable transfer functions (PQ or HLG) and tunable exposure, saturation, and highlight handling. Pair with ProRes output for professional editing workflows; H265 output is also supported.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "topazlabs-hyperion-hdr-video",
  "input_video": "https://hub.oxen.ai/api/repos/ox/Oxen-AI-Assets/file/main/images/winter_summer_ox.mp4"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/topazlabs-hyperion-hdr-video

Request parameters

Required parameters

FieldTypeDefaultDescription
input_videostringVideo file to convert to HDR (URL or file path). Format: uri.

Optional parameters

FieldTypeDefaultDescription
transfer_functionstring"hlg"HDR transfer function. HLG is broadcast-friendly; PQ targets HDR10 mastering. One of: pq, hlg.
adjust_exposurenumber0.5Exposure adjustment applied during HDR conversion. Range: 0 – 1.
boost_saturationnumber0.5Saturation boost applied during HDR conversion. Range: 0 – 1.
highlight_thresholdnumber0.65Threshold above which highlights are expanded into HDR range. Range: 0.45 – 0.85.
output_encoderstring"H265"Video encoder for the rendered output. ProRes is recommended for pro editing workflows. One of: H265, ProRes.
output_profilestring"422 HQ"ProRes quality profile. One of: 422 Proxy, 422 LT, 422 Std, 422 HQ.