Interface ManifestOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ManifestOptions
,ManifestOptions.Builder
public interface ManifestOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManifestOptions.OrderPolicy
getBitrateOrder()
If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.int
getBitrateOrderValue()
If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.RenditionFilter
getIncludeRenditions(int index)
If specified, the output manifest will only return renditions matching the specified filters.int
getIncludeRenditionsCount()
If specified, the output manifest will only return renditions matching the specified filters.List<RenditionFilter>
getIncludeRenditionsList()
If specified, the output manifest will only return renditions matching the specified filters.RenditionFilterOrBuilder
getIncludeRenditionsOrBuilder(int index)
If specified, the output manifest will only return renditions matching the specified filters.List<? extends RenditionFilterOrBuilder>
getIncludeRenditionsOrBuilderList()
If specified, the output manifest will only return renditions matching the specified filters.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIncludeRenditionsList
List<RenditionFilter> getIncludeRenditionsList()
If specified, the output manifest will only return renditions matching the specified filters.
repeated .google.cloud.video.stitcher.v1.RenditionFilter include_renditions = 1;
-
getIncludeRenditions
RenditionFilter getIncludeRenditions(int index)
If specified, the output manifest will only return renditions matching the specified filters.
repeated .google.cloud.video.stitcher.v1.RenditionFilter include_renditions = 1;
-
getIncludeRenditionsCount
int getIncludeRenditionsCount()
If specified, the output manifest will only return renditions matching the specified filters.
repeated .google.cloud.video.stitcher.v1.RenditionFilter include_renditions = 1;
-
getIncludeRenditionsOrBuilderList
List<? extends RenditionFilterOrBuilder> getIncludeRenditionsOrBuilderList()
If specified, the output manifest will only return renditions matching the specified filters.
repeated .google.cloud.video.stitcher.v1.RenditionFilter include_renditions = 1;
-
getIncludeRenditionsOrBuilder
RenditionFilterOrBuilder getIncludeRenditionsOrBuilder(int index)
If specified, the output manifest will only return renditions matching the specified filters.
repeated .google.cloud.video.stitcher.v1.RenditionFilter include_renditions = 1;
-
getBitrateOrderValue
int getBitrateOrderValue()
If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.
.google.cloud.video.stitcher.v1.ManifestOptions.OrderPolicy bitrate_order = 2;
- Returns:
- The enum numeric value on the wire for bitrateOrder.
-
getBitrateOrder
ManifestOptions.OrderPolicy getBitrateOrder()
If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.
.google.cloud.video.stitcher.v1.ManifestOptions.OrderPolicy bitrate_order = 2;
- Returns:
- The bitrateOrder.
-
-