通过Youtube API在Youtube视频上传中进行长描述时出错

时间:2011-06-21 09:20:42

标签: java youtube youtube-api

我正在尝试通过youtube直接上传将视频上传到youtube。它工作正常。然后我创建了一个描述很长的视频。然后我收到以下错误;

com.google.gdata.util.InvalidEntryException:错误请求

<?xml version='1.0' encoding='UTF-8'?><errors><error><domain>yt:validation</domain><code>too_long</code><location type='xpath'>media:group/media:description/text()</location></error></errors>

我想知道这是由于描述的长度还是由于其他原因造成的?

以下是我的代码

private String uploadVideo(YouTubeService service, String videoLocation,String mimeType,String title) throws InterruptedException, ExecutionException, TimeoutException, ServiceException, IOException {
    String id = "";
    File videoFile = new File(videoLocation);
    if (!videoFile.exists()) {
        System.out.println("Sorry, that video doesn't exist.");

    }
    String videoTitle = title;
    VideoEntry newEntry = new VideoEntry();
    YouTubeMediaGroup mg = newEntry.getOrCreateMediaGroup();
    mg.setTitle(new MediaTitle());
    mg.getTitle().setPlainTextContent(videoTitle);
    mg.setKeywords(new MediaKeywords());
    mg.getKeywords().addKeyword("yt:crop=16:9");
    mg.setDescription(new MediaDescription());
    mg.getDescription().setHtmlContent(attributionDocument);
    mg.setPrivate(true);
    mg.addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME, "Tech"));


    MediaFileSource ms = new MediaFileSource(videoFile, "video/quicktime");
    newEntry.setMediaSource(ms);

    String uploadUrl =
      "http://uploads.gdata.youtube.com/feeds/api/users/default/uploads";

    VideoEntry createdEntry = service.insert(new URL(uploadUrl), newEntry);
    id =createdEntry.getId();
    return id;

    }

如果有人可以帮助我,我将非常感激。

提前致谢。

1 个答案:

答案 0 :(得分:1)

响应XML对“media:group / media:description / text()”说“too_long”。这对我来说非常有说服力。

使用较短的描述,问题应该消失。


FWIW,this link说明了media:description应包含的内容,并提到有大小限制。