Class: Google::Apis::TranscoderV1::Fmp4Config

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/transcoder_v1/classes.rb,
lib/google/apis/transcoder_v1/representations.rb,
lib/google/apis/transcoder_v1/representations.rb

Overview

fmp4 container configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Fmp4Config

Returns a new instance of Fmp4Config.



771
772
773
# File 'lib/google/apis/transcoder_v1/classes.rb', line 771

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#codec_tagString

Optional. Specify the codec tag string that will be used in the media bitstream. When not specified, the codec appropriate value is used. Supported H265 codec tags: - hvc1 (default) - hev1 Corresponds to the JSON property codecTag

Returns:

  • (String)


769
770
771
# File 'lib/google/apis/transcoder_v1/classes.rb', line 769

def codec_tag
  @codec_tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



776
777
778
# File 'lib/google/apis/transcoder_v1/classes.rb', line 776

def update!(**args)
  @codec_tag = args[:codec_tag] if args.key?(:codec_tag)
end