开发者

uploading video on youtube using youtube java client library api

开发者 https://www.devze.com 2023-04-05 11:36 出处:网络
Following is the error: Sorry, your upload was invalid: <?xml version=\'1.0\' encoding=\'UTF-8\'?>

Following is the error:

Sorry, your upload was invalid:

<?xml version='1.0' encoding='UTF-8'?>
<errors>
<error>
<domain>yt:validation</do开发者_如何转开发main>
<code>invalid_value</code>
<locationtype='xpath'>media:group/media:category[@scheme='http://gdata.youtube.com/schemas/2007/categories.cat']/text()</location>
</error>
</errors>

Below is my code for video-upload:

public class YtUpload {

        public YtUpload() {

        try {

        String client_id = "abcd";
        String developer_key = "AI39si6Nb_onkYi1b7...";
    YouTubeService service = new YouTubeService(client_id,developer_key);
    service.setUserCredentials("xyz@gmail.com", "password");
    VideoEntry newEntry = new VideoEntry();

        YouTubeMediaGroup mg = newEntry.getOrCreateMediaGroup();
    mg.setTitle(new MediaTitle());
    mg.getTitle().setPlainTextContent("My Test Game");
    mg.addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME, "tech"));
    mg.setKeywords(new MediaKeywords());
    mg.getKeywords().addKeyword("conference");
    mg.setDescription(new MediaDescription());
    mg.getDescription().setPlainTextContent("My description");
    mg.setPrivate(false);
    mg.addCategory(new MediaCategory(YouTubeNamespace.DEVELOPER_TAG_SCHEME, "mydevtag"));
    mg.addCategory(new MediaCategory(YouTubeNamespace.DEVELOPER_TAG_SCHEME, "anotherdevtag"));

    newEntry.setGeoCoordinates(new GeoRssWhere(37.0,-122.0));
    //alternatively, one could specify just a descriptive string
    newEntry.setLocation("Mountain View, CA");

        MediaFileSource ms = new MediaFileSource(new File("c:\\largeV_smallA.mp4"), "video/quicktime");
    newEntry.setMediaSource(ms);
    String uploadUrl = "http://uploads.gdata.youtube.com/feeds/api/users/default/uploads";
    service.insert(new URL(uploadUrl), newEntry);
    } 
        catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
            e.printStackTrace();
    } catch (ServiceException se) {
        System.out.println("Sorry, your upload was invalid:");
        System.out.println(se.getResponseBody());
        return;
    }
    System.out.println("Video uploaded successfully!");
    }

    public static void main(String[] args) {
        new YtUpload();
    }}


MediaFileSource(new File("c:\\largeV_smallA.**mp4**"), "video/**quicktime**");

mp4 and quicktime not match

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号