-
-
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
10 changed files
with
115 additions
and
3 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.4-dev" | ||
"dev-master": "1.5-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Optionally remove any tts:rubyReserve attributes present in your input, that do not have a tts:ruby attribute in the | ||
* same element, from your output. Use if your vertical Japanese output captions have alignment issues. To remove ruby | ||
* reserve attributes when present: Choose Enabled. To not remove any ruby reserve attributes: Keep the default value, | ||
* Disabled. | ||
*/ | ||
final class RemoveRubyReserveAttributes | ||
{ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* To include a timecode track in your MP4 output: Choose Enabled. MediaConvert writes the timecode track in the Null | ||
* Media Header box (NMHD), without any timecode text formatting information. You can also specify dropframe or | ||
* non-dropframe timecode under the Drop Frame Timecode setting. To not include a timecode track: Keep the default | ||
* value, Disabled. | ||
*/ | ||
final class TimecodeTrack | ||
{ | ||
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
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