C# YouTube : Google API

March 12, 2011 by C#   Integration   Google API     This post is marked as obsolete.

This week we had the opportunity to do some integration with YouTube for one of our clients - upload, edit, remove and displaying videos all in the "comfort" of their own website.

Initially we thought that we will probably need to do this using raw calls etc to YouTube (which we'd probably wrap into some sexy reusable classes), but luckily Google did all the work for us already via their data API - in a few lines of code one can for example upload a video to YouTube (like you will see in the following post).

Before you continue, you need to download the Google Data API (if you didn't already) and register for a YouTube developer key, you'll also need a username and password to access YouTube.

Lets jump into some code...

You'll need to add the following Google API references to your solution.



The following namespaces (located within the added references) are required:

using Google.YouTube;
using Google.GData.YouTube;
using Google.GData.Client;
using Google.GData.Extensions;
using Google.GData.Extensions.MediaRss;

Next you need to create an instance of the YouTubeRequestSettings class to which we pass all the settings required to connect to YouTube:

YouTubeRequestSettings settings = new YouTubeRequestSettings("applicationName", "developerKey", "userName", "passWord");

Upload a video to YouTube

YouTubeRequest request = new YouTubeRequest(settings);
Video newVideo = new Video();
newVideo.Title = "Test";
newVideo.Tags.Add(new MediaCategory("Animals", YouTubeNameTable.CategorySchema));
newVideo.Description = "Testing Testing Testing";
newVideo.YouTubeEntry.Private = false;
newVideo.YouTubeEntry.MediaSource = new MediaFileSource("C:\\test.wmv", "video/x-ms-wmv");
request.Upload(newVideo);

In the preceding snippet we pass our settings instance to a YouTubeRequest to which we pass a video using its Upload method.

Notice the Tags collection to which we add a MediaCategory - we're required to add our video to at least one category, a list of available categories can be found here.

When uploading large files to YouTube it might be prudent to set the YouTubeRequest's timeout, like see in the following piece of code.

((GDataRequestFactory)request.Service.RequestFactory).Timeout = 9999999;

List your uploaded videos

public IEnumerable<Video> ListMyVideos()
{
    YouTubeRequest request = new YouTubeRequest(settings);
    YouTubeQuery query = new YouTubeQuery(YouTubeQuery.DefaultUploads);
    Feed<Video> feed = request.Get<Video>(query);
    return feed != null ? feed.Entries : null;
}

In the snippet above we essentially create a simple query that returns all the videos the current logged in user (via YouTubeRequestSettings) uploaded to YouTube.

Get a video

public Video GetMyVideo(string uploader, string videoID)
{
    YouTubeRequest request = new YouTubeRequest(settings);
    Uri uri = new Uri(String.Format("http://gdata.YouTube.com/feeds/api/users/{0}/uploads/{1}", uploader, videoID));
    return request.Retrieve<Video>(uri);
}

In the preceding snippet we pass our YouTube username (minus its domain) and the ID of the video we wish to retrieve (you can get a list of videoID's in the snippet ahead of this one).

The video object returned by the Retrieve method (on the request), contains all kinds of useful information about the retrieved video e.g. length of the video, links to generated thumbnails etc.

Remove a video

public void Remove(Video video)
{
    YouTubeRequest request = new YouTubeRequest(settings);
    request.Delete(video);
}

To remove your video from YouTube is quite simple, simply pass the video retrieved from the GetVideo method (like seen in this post) to the Remove method seen above.

Update a video

public void Update(Video video, string title, string description)
{         
    YouTubeRequest request = new YouTubeRequest(settings);
    video.Title = title;
    video.Description = description;
    request.Update(video);
}

Similar to the Remove method, we simply pass our retrieved video to the YouTubeRequest object.

Display a video

Displaying a video is probably the easiest part in the whole process - in the past we used object/embed tags, but I noticed that YouTube migrated to iframes like seen in the following snippet.

<iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/somevideoID" frameborder="0" allowfullscreen></iframe>

Note: You can disable "related videos", by passing rel=0 to the url in the iframe eg. http://www.youtube.com/embed/somevideoID?rel=0 or even default it to HD by passing hd=1 to the url eg. http://www.youtube.com/embed/somevideoID?hd=1.

Above that, there is tons of customizations & settings we can set within YouTube itself for our uploaded videos - disabling comments, visibility (private / public / unlisted) etc.

Have fun...

Additional Reading
Developer's YouTube Guide for .NET


Leave a Comment


January 2, 2018 by Christoff Truter

The API this post is based on (v2) is obsolete and no longer supported.

execution of authentication request returned unexpected result: 404 January 2, 2018 by chery

Hi While uploading video on youtube i am getting below error please help me Error :execution of authentication request returned unexpected result: 404

invalid credentials error August 25, 2016 by kundan

Hi, Thanks for your post. For mebi created a test gmail account which is working fine But when i am using my existing old gmail account. It throws Invalid Credentials error. I am fed up with this error message. Please assist.

How to post comment April 16, 2015 by Niks Goletar

how to post a comment on a youtube video through c#

January 21, 2015 by Anonymous

@Clinton, perhaps state it as a question on stackoverflow?

Upload subtitle file along with video to YouTube using YouTube API January 21, 2015 by Clinton

Could anyone help me on uploading a subtitle file along with video. I uploaded video. But don't know how to upload the subtitle file. Please help me on this.

Version 3.0 January 14, 2015 by Christoff Truter

Hi Clinton I will have a look at it this week, this is quite an old post (2011), might need to do an updated version, seeing that version 3.0 of the API has been released already. https://developers.google.com/youtube/v3/

Adding SubTitle file through code January 13, 2015 by Clinton

Could you please tell me How can i upload a subtitle along this video?

Multiple Upload July 15, 2014 by Rishad1

I need to upload multiple videos to you tube please help..

Thanks and Async November 16, 2012 by Anonymous

Hey there. Thank you for posting that friendly examples. They really helped me a lot. They worked fine but my project required an async operation for the upload and luckyly I have found an other helpful example posted here: https://groups.google.com/forum/?fromgroups=#!topic/youtube-api-gdata/IbAyA8cLNWo Maybe that helps also someone else so I want to share it here beside your nice tutorial. Maybe you want to add it anyway as an optional way with progress output. Instead of: request.Upload(newVideo); Use: request.Service.InsertAsync(new Uri("http://uploads.gdata.youtube.com/feeds/api/users/default/uploads"), newVideo.AtomEntry, newVideo); request.Service.AsyncOperationProgress += new AsyncOperationProgressEventHandler(Progress); And add: public void Progress(object sender, AsyncOperationProgressEventArgs e) { MyProgressVariable = e.ProgressPercentage; }