class Google::Apis::TranscoderV1::Input
Input
asset.
Attributes
key[RW]
A unique key for this input. Must be specified when using advanced mapping and edit lists. Corresponds to the JSON property ‘key` @return [String]
preprocessing_config[RW]
Preprocessing configurations. Corresponds to the JSON property ‘preprocessingConfig` @return [Google::Apis::TranscoderV1::PreprocessingConfig]
uri[RW]
URI of the media. Input
files must be at least 5 seconds in duration and stored in Cloud Storage (for example, ‘gs://bucket/inputs/file.mp4`). If empty, the value is populated from `Job.input_uri`. See [Supported input and output formats](cloud.google.com/transcoder/docs/concepts/supported-input-and- output-formats). Corresponds to the JSON property `uri` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1/classes.rb, line 940 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/transcoder_v1/classes.rb, line 945 def update!(**args) @key = args[:key] if args.key?(:key) @preprocessing_config = args[:preprocessing_config] if args.key?(:preprocessing_config) @uri = args[:uri] if args.key?(:uri) end