Class: Google::Cloud::Video::Stitcher::V1::ManifestOptions

Inherits:
Object
  • Object
show all
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

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.

Returns:



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.

Returns:



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