Show / Hide Table of Contents

Class VideoSuggestions

Specifies suggestions on how to improve video content, including encoding hints, tag suggestions, and editor suggestions.

Inheritance
System.Object
VideoSuggestions
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class VideoSuggestions : IDirectResponseSchema

Properties

EditorSuggestions

A list of video editing operations that might improve the video quality or playback experience of the uploaded video.

Declaration
[JsonProperty("editorSuggestions")]
public virtual IList<string> EditorSuggestions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ProcessingErrors

A list of errors that will prevent YouTube from successfully processing the uploaded video video. These errors indicate that, regardless of the video's current processing status, eventually, that status will almost certainly be failed.

Declaration
[JsonProperty("processingErrors")]
public virtual IList<string> ProcessingErrors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ProcessingHints

A list of suggestions that may improve YouTube's ability to process the video.

Declaration
[JsonProperty("processingHints")]
public virtual IList<string> ProcessingHints { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ProcessingWarnings

A list of reasons why YouTube may have difficulty transcoding the uploaded video or that might result in an erroneous transcoding. These warnings are generated before YouTube actually processes the uploaded video file. In addition, they identify issues that are unlikely to cause the video processing to fail but that might cause problems such as sync issues, video artifacts, or a missing audio track.

Declaration
[JsonProperty("processingWarnings")]
public virtual IList<string> ProcessingWarnings { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

TagSuggestions

A list of keyword tags that could be added to the video's metadata to increase the likelihood that users will locate your video when searching or browsing on YouTube.

Declaration
[JsonProperty("tagSuggestions")]
public virtual IList<VideoSuggestionsTagSuggestion> TagSuggestions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<VideoSuggestionsTagSuggestion>

Implements

IDirectResponseSchema
Back to top