Youtube上传 - 如何限制上传速度

时间:2012-04-16 01:14:51

标签: c# api youtube

如何限制youtube上的加速上传视频,因为当我开始上传时,我的互联网速度非常慢

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);

0 个答案:

没有答案