3

我如何限制在 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);
4

0 回答 0