Class: Google::Apis::YoutubeV3::IngestionInfo

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

Overview

Describes information necessary for ingesting an RTMP or an HTTP stream.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ IngestionInfo

Returns a new instance of IngestionInfo.



3477
3478
3479
# File 'generated/google/apis/youtube_v3/classes.rb', line 3477

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

Instance Attribute Details

#backup_ingestion_addressString

The backup ingestion URL that you should use to stream video to YouTube. You have the option of simultaneously streaming the content that you are sending to the ingestionAddress to this URL. Corresponds to the JSON property backupIngestionAddress

Returns:

  • (String)


3460
3461
3462
# File 'generated/google/apis/youtube_v3/classes.rb', line 3460

def backup_ingestion_address
  @backup_ingestion_address
end

#ingestion_addressString

The primary ingestion URL that you should use to stream video to YouTube. You must stream video to this URL. Depending on which application or tool you use to encode your video stream, you may need to enter the stream URL and stream name separately or you may need to concatenate them in the following format: STREAM_URL/STREAM_NAME Corresponds to the JSON property ingestionAddress

Returns:

  • (String)


3470
3471
3472
# File 'generated/google/apis/youtube_v3/classes.rb', line 3470

def ingestion_address
  @ingestion_address
end

#stream_nameString

The HTTP or RTMP stream name that YouTube assigns to the video stream. Corresponds to the JSON property streamName

Returns:

  • (String)


3475
3476
3477
# File 'generated/google/apis/youtube_v3/classes.rb', line 3475

def stream_name
  @stream_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3482
3483
3484
3485
3486
# File 'generated/google/apis/youtube_v3/classes.rb', line 3482

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