Class: Google::Cloud::Video::Stitcher::V1::ManifestOptions
- Inherits:
-
Object
- Object
- Google::Cloud::Video::Stitcher::V1::ManifestOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/video/stitcher/v1/sessions.rb
Overview
Options for manifest generation.
Defined Under Namespace
Modules: OrderPolicy
Instance Attribute Summary collapse
-
#bitrate_order ⇒ ::Google::Cloud::Video::Stitcher::V1::ManifestOptions::OrderPolicy
If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.
-
#include_renditions ⇒ ::Array<::Google::Cloud::Video::Stitcher::V1::RenditionFilter>
If specified, the output manifest will only return renditions matching the specified filters.
Instance Attribute Details
#bitrate_order ⇒ ::Google::Cloud::Video::Stitcher::V1::ManifestOptions::OrderPolicy
Returns If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'proto_docs/google/cloud/video/stitcher/v1/sessions.rb', line 223 class ManifestOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Defines the ordering policy during manifest generation. module OrderPolicy # Ordering policy is not specified. ORDER_POLICY_UNSPECIFIED = 0 # Order by ascending. ASCENDING = 1 # Order by descending. DESCENDING = 2 end end |
#include_renditions ⇒ ::Array<::Google::Cloud::Video::Stitcher::V1::RenditionFilter>
Returns If specified, the output manifest will only return renditions matching the specified filters.
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'proto_docs/google/cloud/video/stitcher/v1/sessions.rb', line 223 class ManifestOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Defines the ordering policy during manifest generation. module OrderPolicy # Ordering policy is not specified. ORDER_POLICY_UNSPECIFIED = 0 # Order by ascending. ASCENDING = 1 # Order by descending. DESCENDING = 2 end end |