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.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/video/stitcher/v1/sessions.rb', line 251 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.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/video/stitcher/v1/sessions.rb', line 251 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 |