How to Maintain Original Dynamic EQ

In some cases such as with pre-processed audio or professional recording equipment the dynamic eq adjustments from the Enhance API may not have the desired outcome.

This can be the case with musical performances for example. In those use cases, the dynamic eq processing can be disabled.

You would use a body payload in your requests that might look like:

{
  "input": "s3://dolbyio/public/shelby/indoors.original.mp4",
  "output": "dlb://out/indoors.no-dynamic-eq.mp4",
  "content": {
    "type": "music"
  },
  "audio": {
    "filter": { "dynamic_eq": { "enable": false } }
  }
}