class Google::Apis::YoutubeV3::VideoProcessingDetailsProcessingProgress
Video
processing progress and completion time estimate.
Attributes
The number of parts of the video that YouTube has already processed. You can estimate the percentage of the video that YouTube has already processed by calculating: 100 * parts_processed
/ parts_total
Note that since the estimated number of parts could increase without a corresponding increase in the number of parts that have already been processed, it is possible that the calculated progress could periodically decrease while YouTube processes a video. Corresponds to the JSON property `partsProcessed` @return [Fixnum]
An estimate of the total number of parts that need to be processed for the video. The number may be updated with more precise estimates while YouTube processes the video. Corresponds to the JSON property `partsTotal` @return [Fixnum]
An estimate of the amount of time, in millseconds, that YouTube needs to finish processing the video. Corresponds to the JSON property `timeLeftMs` @return [Fixnum]
Public Class Methods
# File lib/google/apis/youtube_v3/classes.rb, line 8270 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 8275 def update!(**args) @parts_processed = args[:parts_processed] if args.key?(:parts_processed) @parts_total = args[:parts_total] if args.key?(:parts_total) @time_left_ms = args[:time_left_ms] if args.key?(:time_left_ms) end