Youtube Download - How to Limit Download Speed

How can I limit the speed of uploading videos to YouTube, because when I upload my Internet, it’s very slow

YouTubeRequestSettings settings = new YouTubeRequestSettings("example app", developerKey, Login, Passw);

YouTubeRequest request = new YouTubeRequest(settings);

Video newVideo = new Video();

newVideo.Title = Title;
newVideo.Keywords = Tags;
newVideo.Description = Description;
newVideo.YouTubeEntry.MediaSource = new MediaFileSource(@PathVideo, "video/quicktime");
newVideo.Tags.Add(new MediaCategory("Howto", YouTubeNameTable.CategorySchema));
newVideo.YouTubeEntry.Private = false;

request.Upload(newVideo);
+3
source share

All Articles