public static H265DynamicRangeFormat SDR()
@@ -98,7 +100,11 @@
Methods
public
DOLBY_VISION()
- — Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
+ — Configure the Output to be Dolby Vision Profile 5.
DOLBY_VISION_PROFILE_8_1()
+ — Configure the Output to be Dolby Vision Profile 8.1 (HDR10 cross-compatibility)
HDR10()
— Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
+
Configure the Output to be Dolby Vision Profile 5.
tag:
diff --git a/src/Common/Middleware/CustomApiHeaders.php b/src/Common/Middleware/CustomApiHeaders.php
index bdd135d6f..d7c233bbb 100644
--- a/src/Common/Middleware/CustomApiHeaders.php
+++ b/src/Common/Middleware/CustomApiHeaders.php
@@ -17,7 +17,7 @@ public function __construct(string $apiKey, ?string $tenantOrgId)
'Content-Type' => 'application/json',
'X-Api-Key' => $apiKey,
'X-Api-Client' => 'bitmovin-api-sdk-php',
- 'X-Api-Client-Version' => '1.203.0',
+ 'X-Api-Client-Version' => '1.204.0',
];
if ($tenantOrgId !== null) {
diff --git a/src/Models/H265DynamicRangeFormat.php b/src/Models/H265DynamicRangeFormat.php
index 0b60aef26..7d1d4987f 100644
--- a/src/Models/H265DynamicRangeFormat.php
+++ b/src/Models/H265DynamicRangeFormat.php
@@ -7,6 +7,12 @@ class H265DynamicRangeFormat extends \BitmovinApiSdk\Common\Enum
/** @var string */
private const DOLBY_VISION = 'DOLBY_VISION';
+ /** @var string */
+ private const DOLBY_VISION_PROFILE_5 = 'DOLBY_VISION_PROFILE_5';
+
+ /** @var string */
+ private const DOLBY_VISION_PROFILE_8_1 = 'DOLBY_VISION_PROFILE_8_1';
+
/** @var string */
private const HDR10 = 'HDR10';
@@ -26,7 +32,7 @@ public static function create(string $value)
}
/**
- * Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
+ * Configure the Output to be Dolby Vision Profile 5.
*
* @return H265DynamicRangeFormat
*/
@@ -35,6 +41,26 @@ public static function DOLBY_VISION()
return new H265DynamicRangeFormat(self::DOLBY_VISION);
}
+ /**
+ * Configure the Output to be Dolby Vision Profile 5
+ *
+ * @return H265DynamicRangeFormat
+ */
+ public static function DOLBY_VISION_PROFILE_5()
+ {
+ return new H265DynamicRangeFormat(self::DOLBY_VISION_PROFILE_5);
+ }
+
+ /**
+ * Configure the Output to be Dolby Vision Profile 8.1 (HDR10 cross-compatibility)
+ *
+ * @return H265DynamicRangeFormat
+ */
+ public static function DOLBY_VISION_PROFILE_8_1()
+ {
+ return new H265DynamicRangeFormat(self::DOLBY_VISION_PROFILE_8_1);
+ }
+
/**
* Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
*