Class: Google::Cloud::Video::Transcoder::V1::Manifest::DashConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Video::Transcoder::V1::Manifest::DashConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/video/transcoder/v1/resources.rb
Overview
DASH
manifest configuration.
Defined Under Namespace
Modules: SegmentReferenceScheme
Instance Attribute Summary collapse
-
#segment_reference_scheme ⇒ ::Google::Cloud::Video::Transcoder::V1::Manifest::DashConfig::SegmentReferenceScheme
The segment reference scheme for a
DASH
manifest.
Instance Attribute Details
#segment_reference_scheme ⇒ ::Google::Cloud::Video::Transcoder::V1::Manifest::DashConfig::SegmentReferenceScheme
Returns The segment reference scheme for a DASH
manifest. The default is
SEGMENT_LIST
.
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'proto_docs/google/cloud/video/transcoder/v1/resources.rb', line 379 class DashConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The segment reference scheme for a `DASH` manifest. module SegmentReferenceScheme # The segment reference scheme is not specified. SEGMENT_REFERENCE_SCHEME_UNSPECIFIED = 0 # Lists the URLs of media files for each segment. SEGMENT_LIST = 1 # Lists each segment from a template with $Number$ variable. SEGMENT_TEMPLATE_NUMBER = 2 end end |