-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
27 changed files
with
754 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3-dev" | ||
"dev-master": "1.4-dev" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Choose whether to limit the byte rate at which your SCC input captions are inserted into your output. To not limit | ||
* the caption rate: We recommend that you keep the default value, Disabled. MediaConvert inserts captions in your | ||
* output according to the byte rates listed in the EIA-608 specification, typically 2 or 3 caption bytes per frame | ||
* depending on your output frame rate. To limit your output caption rate: Choose Enabled. Choose this option if your | ||
* downstream systems require a maximum of 2 caption bytes per frame. Note that this setting has no effect when your | ||
* output frame rate is 30 or 60. | ||
*/ | ||
final class CaptionSourceByteRateLimit | ||
{ | ||
public const DISABLED = 'DISABLED'; | ||
public const ENABLED = 'ENABLED'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::DISABLED => true, | ||
self::ENABLED => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Specify whether to apply Saliency aware encoding to your output. Use to improve the perceptual video quality of your | ||
* output by allocating more encoding bits to the prominent or noticeable parts of your content. To apply saliency aware | ||
* encoding, when possible: We recommend that you choose Preferred. The effects of Saliency aware encoding are best seen | ||
* in lower bitrate outputs. When you choose Preferred, note that Saliency aware encoding will only apply to outputs | ||
* that are 720p or higher in resolution. To not apply saliency aware encoding, prioritizing encoding speed over | ||
* perceptual video quality: Choose Disabled. | ||
*/ | ||
final class H264SaliencyAwareEncoding | ||
{ | ||
public const DISABLED = 'DISABLED'; | ||
public const PREFERRED = 'PREFERRED'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::DISABLED => true, | ||
self::PREFERRED => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Specify whether your video overlay repeats or plays only once. To repeat your video overlay on a loop: Keep the | ||
* default value, Repeat. Your overlay will repeat for the duration of the base input video. To playback your video | ||
* overlay only once: Choose Once. With either option, you can end playback at a time that you specify by entering a | ||
* value for End timecode. | ||
*/ | ||
final class VideoOverlayPlayBackMode | ||
{ | ||
public const ONCE = 'ONCE'; | ||
public const REPEAT = 'REPEAT'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::ONCE => true, | ||
self::REPEAT => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Specify the Unit type to use when you enter a value for X position, Y position, Width, or Height. You can choose | ||
* Pixels or Percentage. Leave blank to use the default value, Pixels. | ||
*/ | ||
final class VideoOverlayUnit | ||
{ | ||
public const PERCENTAGE = 'PERCENTAGE'; | ||
public const PIXELS = 'PIXELS'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::PERCENTAGE => true, | ||
self::PIXELS => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.