0
votes
1answer
24 views

YouTube/GData API responding with “Missing start boundary”

I'm getting errors when trying to upload to YouTube using the Java client/api. I hadn't tested it in a while, but it was working, so I'm not sure what caused it to stop. As far as I can tell, ...
0
votes
2answers
71 views

how to automatically upload a video to YouTube using JSP?

How to Upload a video to YouTube using java technology (JSP)using YouTube API and Google API. Please give me the full details of how to upload because I am a beginner.
0
votes
0answers
34 views

How to fix error YouTubeInitializationResult.SERVICE_INVALID

I try use Youtube API in my Android App, my app looke like this: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ...
1
vote
2answers
40 views

Keywords object is empty when making authenticated YouTube API call with Java YouTubeService class

I am trying to fetch videos from MY OWN YouTube account, so that I get the keywords/tags for each video. I'm trying to use the most simple approach for making an authenticated call to get my videos ...
2
votes
5answers
154 views

Java Youtube credentials?

I'm facing a problem with youtube java credentials,normally it works well and i was able to upload to youtube, but today i' m getting this exception invalid credentials. YouTubeService service = new ...
4
votes
1answer
77 views

Youtube Android Api shows Error

I'm developing an android app with Youtube android api..It was worked sucessfully upto last week.But now it shows an error," an error occurred while initializing the youtube player(network error) ...
0
votes
1answer
32 views

Retrieving the unreadCount tag for a YouTube video

How do I get the unreadCount value using the YouTube client library? I think this is a new tag in the YouTube Data API, but I can't find the API method to get it. I can only get some values through ...
1
vote
1answer
93 views

Read YouTube comment feed using Java

I am want to read and display top 200 comments on a video on youtube. Basically when I go to the link: http://gdata.youtube.com/feeds/api/videos/EokUNzGJBI8/comments I get all the comments in rss feed ...
0
votes
1answer
134 views

Upload Video using Youtube Api JAVA

I want to upload the videos from my java code and get the uploaded youtube url using Youtube api. Can you please provide some examples or sample links to develop ? I'm google it but couldn't able to ...
1
vote
1answer
112 views

unable to run youtubedata api 2.0 in java as issue related to guava

I have used the following jars on my classpath for retrieving list of my subscriptions using YouTube API: gdata-client-1.0.jar gdata-core-1.0.jar gdata-media-1.0.jar gdata-youtube-2.0.jar ...
0
votes
1answer
86 views

Controlling video buffering via Youtube API

I'm using Android Youtube API and I was wondering if there is a way to control video buffering. I'm specifically interested in the possibility of pausing the buffering and resuming it later on with ...
1
vote
0answers
90 views

YouTubeService crashes my Android app when trying to upload a video to YouTube

I tried to use YouTubeService to connect to Youtube and Upload a video but is crashes allready if if it reaches YouTubeService(Client_ID,Developer_Code) I got some code from this Topic: video is ...
0
votes
0answers
126 views

android proguard makes the youtube api oauth disabled?

I use the youtube java api client here http://code.google.com/p/google-api-java-client/ when I finish coding, the app goes well when unsigned. When I signed it, the Android signed it with proguard, ...
0
votes
1answer
478 views

Android YouTube API - Handling Orientation Change with No Buffering

I am using Android YouTube API to show a video in portrait mode. Upon playing the video and turning the device into landscape mode, the video continues from the spot left off but re-buffers. I am ...
0
votes
1answer
80 views

YouTubeService Class throwing no such method Exception

I want to retrive the read only data from youtube using gData Java client but when I am trying to create the object of YouTubeService class it is throwing No Such Method Exception. Not able to find ...
0
votes
1answer
168 views

Way to get more than 999 results from a Youtube video feed?

I'm writing right now a bachelorthesis about the Long Tail and want to get data to research it's behaviour. That's why I wanted to retrieve information on the viewcounts of youtube videos. The only ...
1
vote
0answers
91 views

Android: Youtube API playlist [duplicate]

I've been doing an apps that using YouTube API in my project. I had tab that represent 3 tabs. First channel tab, second top video and finally fav video. I want to use the standalone YouTube but ...
0
votes
2answers
75 views

YouTube Android App [closed]

I am new to Android. I am working on a video streaming project. The project is an app like Android's Youtube app. I want my app to have all the features that Android's Youtube app has. Can anyone help ...
0
votes
1answer
44 views

youtube playback api - some clips won't play

so, i'm programming whit the new playback api from youtube and i noticed that some clips say: "this video can not be played on moblie devices". now my question is why? and is there some way to get a ...
2
votes
2answers
83 views

Is there a limit on the number of comments to be extracted from Youtube?

I am trying to extract comments on some YouTubeVideos using the youtube-api with Java. Everything is going fine except the fact that I am not able to extract all the comments if the video has a large ...
0
votes
1answer
44 views

YouTubeQuery(..) take too long to show uploaded video

YouTubeQuery(..) take too long to show published video. Approximately 24h after upload video. Anyway to speed up this?
0
votes
1answer
62 views

Null response from youtube api

I am getting null response from youtube api and don't have a clue why. public void test () throws JSONException, IOException, ServiceException { YouTubeService youtube = new ...
0
votes
1answer
146 views

Fetching Video Feed From youtube client api

I am using the gdata-src.java-1.47.1 java client api and using the online developer guide. My problem is that in the online developer guide the getFeed (URL,String) method is called from a service ...
1
vote
0answers
55 views

youtube api XmlWriter$Namespace Exception

I am using the youtube api to upload videos. When I initialize YoutubeService throw me this exception "Exception in thread "main" java.lang.NoSuchMethodError: ...
3
votes
2answers
130 views

Status 404 After YouTube GetUploadToken Request Using GWT RequestBuilder

I am trying to dispatch a POST request to get an upload token from YouTube using RequestBuilder from the client-side of my GWT app. I am trying to build the request as described by the following ...
4
votes
1answer
241 views

Batch request with youtube api - get the latest video information from multiple channels

I have 10 youtube channels that I like and I want to get the latest video information for each channel. Right now i'm doing 10 different calls like this one: ...
5
votes
3answers
414 views

NoLinkedYoutubeAccount error 401 when uploading videos on Youtube with java

i would like to upload videos on youtube from my java web application: I want to receive (server side) my authToken and form-action so to upload a video. I've created a new google/youtube account ...
0
votes
1answer
119 views

Youtube: Stream searched videos on Java

I am trying to make a search on youtube via Youtube API for Java. I want to Play these videos "by any means of playing". How can i do this?In many cases i have seen the example: startActivity(new ...
1
vote
1answer
80 views

YouTube Authentication by GWT Client

I am developing a GWT application with YouTube integration. As a first step, I need to be able to authenticate the GWT app to YouTube API and I am not sure how to go about this as there seems little ...
1
vote
1answer
316 views

Youtube Analytics & Google Service Account

Objectives: Implement a program (java or python) to retrieve data from videos that I published on my Youtube channel. This program will be launched daily (1:00 AM). Solutions: To retrieve data ...
2
votes
1answer
168 views

NoSuchMethodError with YouTube API in Java

I am writing a code in Java to upload videos to youtube from mu application. My code is : package com.youtube.video; import java.io.IOException; import java.net.URL; import ...
1
vote
1answer
359 views

How to fix Connection Reset Exception in java?

I am trying to upload video to youtube: My code for the same is: private static void uploadVideo(YouTubeService service) throws IOException { System.out.println("First, type in the path to the ...
1
vote
2answers
251 views

Upload video to youtube in java

I have a video in my local disk i want to upload it on youtube through my application. Can you give me the guidelines to follow the same. please gve me steps to perform that or code or links. Thanks ...
0
votes
0answers
79 views

Youtube API retrieve multiple videos by ID JAVA

I'm using the Youtube Java API and I'm lost in trying to retrieve videos by id. I've tried reading the docs, but can't get anything from it. How does one create these XML feeds? There is a ...
0
votes
1answer
133 views

Youtube api jar dependencies

I'm really stuck here. I'm trying out the youtube API and just cannot get anything to run. I'm having one classnotfound issue after another. Right now I have the following jars on my classpath ...
0
votes
0answers
202 views

Youtube player event handler for state changes? (Java/GWT)

I am using the gwt-youtube-api in a java application. I have a function that plays a video but I am having a hard time monitoring the player state changes. For example I want to automatically play a ...
2
votes
1answer
218 views

YouTube Java API: Get available video resolutions

I am building a simple Java application. Basically, I am searching a keyword on YouTube Data API and getting the video list. Each video has description, author, duration and thumbnail. Everything is ...
1
vote
1answer
312 views

Get list of video from a youtube channel

I'm using these apis https://developers.google.com/youtube/ and I can't figure out how, given a youtube channel address, get the video list with related infos (single video url and title, at least)
2
votes
1answer
316 views

How to retrieve Videos from a YouTube CHANNEL with java gdata client

im using the java google gdata client api for retrieving youtube videos which works fine so far. But today i faced a problem. Im trying to receive videos from a channel but getting no results. The ...
2
votes
1answer
139 views

How to find the number of vote up or vote down for a youtube comment through API

I am fetching the comments for a video using Youtube's Java API. I want to know can I find the number of up votes or down votes for all the comment. If yes then how. Currently I am using the code ...
1
vote
1answer
139 views

Fetch interactive script for a YouTube video

I am trying to fetch the interactive script, if available, for a video from YouTube's Java API but had little success in doing so as I could not find a way to fetch it through API. So, I tried ...
2
votes
1answer
69 views

file locked after youtube resumable upload java sdk

My java code did direct upload of a video and afterwards the program can move the file to a folder. I have just change the code to do resumable upload but now after the upload the file cannot be ...
0
votes
2answers
375 views

Youtube API impossible on android?

I've been having tremendous problems with connecting my android app to the youtube API. Firstly I tried to go along the route of using the native youtube gdata java ...
1
vote
1answer
294 views

Opening YouTube Player API in Modal Window

I am building a site using the bootstrap framework and would like to allow a user to click a button that will open a youtube video inside of a modal window. I would like the player in the modal window ...
0
votes
2answers
672 views

android youtube player

i want to have a youtube player in my app, where i can adjust the url of youtube like http://www.youtube.com/watch?v="yt_id" the yt_id is a string. i have tryed webview's, but i get a loading screen ...
0
votes
0answers
520 views

How to get url of youtube video which has mp4 format through code

I have my own video player which only supports mp4 format. So i need to provide it with mp4 format video. I am parsing the content which i am getting from youtube data api. Currently youtube provide ...
1
vote
0answers
133 views

Java Private video YouTube

I have an application in GWT and i would like to view a private YouTube video programmatically (which I uploaded). After reading the documentation: ...
1
vote
1answer
53 views

Add video(s) to a show's season(s)?

Anybody know if this is available in the YouTube API? I'm pretty sure you can retrieve feeds for shows, but I'm at a loss as far as how to add a video to a season using the .Net (or any other) APIs. ...
1
vote
0answers
109 views

Gdata youtube api user feed returns -1

I have been following the youtube tutorial and have gotten the authenticity token as a session length token and stored it in the database. Now when I do String feedUrl = ...
1
vote
1answer
1k views

example for using YouTube Data API in Android

I am able to get the Youtube content using JAVA. Please help me out to fetch the data in Android. Here's the code in Java: public class YouTubeTest { public static void main(String[] args) { ...

1 2