Tagged Questions
0
votes
3answers
24 views
How to convert YouTube API duration to seconds?
For the sake of interest I want to convert video durations from YouTubes ISO 8601 to seconds. To future proof my solution, I picked a really long video to test it against.
The API provides this for ...
0
votes
2answers
22 views
YouTube API v3 apiclient.errors.HttpError “No filter selected.” - where do I select a filter?
My first attempt at setting up the Google apiclient for YouTube and by following the docs I made this as a test (didn't find a specific example for the YouTube API):
import json
from ...
2
votes
0answers
24 views
Automated Test Run - Python HTTPResponseNotReady()
I am trying to create an automated test using python for testing a youtube API request and response and all of those happening in random quick timely manner.
What I have been getting is an unstable ...
0
votes
1answer
33 views
Which Youtube API scope should I use in order to access my own video's tags in Youtube API v3
I try to retrieve videos' tags using Python API client for Youtube API v3, and I receive snippet without .tags in it. API scope seems to be the reason for me.
0
votes
2answers
44 views
How to find specific elements in XML using ElementTree
I'm trying to parse XML string which I get from youtube video feeds, using Python 3.3.1. Here is the code:
import re
import sys
import urllib.request
import urllib.parse
import xml.etree.ElementTree ...
0
votes
0answers
24 views
YouTube Analytics API: Issue with filters “Could not parse content (N/A) of field parameters.filters”
I am running into an issue with the YouTube Analytics API v3. I am trying to get a traffic source detail report for traffic from related videos for a video on my channel. I'm doing this with the ...
0
votes
0answers
25 views
latest published videos feed
I'm trying to retrieve the latest videos of the 'Comedy' category with the Python library. I use a query like this
http://gdata.youtube.com/feeds/api/videos?
...
1
vote
1answer
50 views
How to update dictionary stored in django's cache?
So I am storing youtube videos metadata uploaded by logged user in django's cache. The metadata looks something like this:
{'user': {'channels': [{'id': 1, 'etag': '2', 'videos': [{'id': '1', 'etag': ...
0
votes
0answers
21 views
Connect social media content with django application [closed]
I am building a content sharing application like youtube where users can upload audio/video/images. Now there is a feature where I prompt the registering user to connect their social media content ...
1
vote
0answers
50 views
Choosing Youtube API v3 vs v2 for Python GUI applicaiton
I am looking into writing a Python GUI app to make use of the Youtube API. This app intends to gather meta data and visualize the results in a variety of methods, however, I am unsure as to which API ...
1
vote
1answer
82 views
How do I upload a transcript to YouTube via the API?
The relevant documentation is found here: https://developers.google.com/youtube/2.0/developers_guide_protocol_captions#Create_Caption_Track
I've tried the following, but I simply receive an esoteric ...
0
votes
0answers
29 views
trying to retrieve recent videos, lot are missing
I'm using the Python YouTube API since some time and I was using this query to retrieve the last 50 videos published in the category 'Gaming':
yt_service = gdata.youtube.service.YouTubeService()
...
0
votes
1answer
156 views
python: get all youtube video urls of a channel
I want to get all video url's of a specific channel. I think json with python or java would be a good choice. I can get the newest video with the following code, but how can I get ALL video links ...
0
votes
1answer
30 views
You Tube API - Process for Creating OAuth for Users
Weird, just discovered that any question beginning with the word "You" is marked as "subjective" by SO. Anyway...
I have an app that uses the Python Google API client to connect to YouTube. Up to ...
0
votes
1answer
110 views
Python Youtube API: Attempt to access Watch Later results in invalid URI
BELIEVED SOLVED: Python API only supports v1, while watch later was added in v2. SOURCE
SOLUTION: Use "Experimental" API v3
I am attempting to use the Youtube API to access my Watch Later playlist. ...
0
votes
1answer
98 views
Retrieving timestamp of YouTube comments
Here is the API response for retrieving comments of a YouTube video, taken from https://developers.google.com/youtube/2.0/developers_guide_protocol_comments:
<feed>
<entry>
...
...
0
votes
1answer
47 views
Retrieving number of subscriptions and subscribers of specific set of users
I'm trying to retrieve the number of subscriptions and subscribers of specific set of users. I'm using YouTube API for Python.
I wrote the following code for number of subscriptions. This code reads ...
0
votes
1answer
119 views
Search YouTube videos by author [closed]
I'm using YouTube API 3.0 and would like to search for videos by author. How would I accomplish this?
I am using python client library.
0
votes
3answers
150 views
Youtube API: Adding videos to a playlist with the new 32 character playlist ID
I've been struggling with what I thought would be a simple task: Adding a video to a youtube playlist. I've got the uri and video id, so this should work, right?
uri = ...
0
votes
1answer
76 views
YouTube API Inbox Request doesn't always work
I',m trying to get Inbox Messages for authenticated Youtube's user's profile.This is my code
def GetInboxMessage(self):
uri = ...
0
votes
1answer
66 views
Retrieving user's joining date in youtube
I'm trying to retrieve user's profile information, such as age, location and etc. using YouTube API,Python.
So far I have succeed to retrieve them all, except the date that the user has joined ...
0
votes
1answer
293 views
Python - YouTube API v3 - How to get video ID only?
How can I get only video ID of video? As I know, I should use fields for that but I don't understand how do they work. My code:
service = build('youtube', 'v3', developerKey = api_key)
request = ...
3
votes
1answer
231 views
Unable to add YouTube playlist using v3 api
I've been working on this for a bit and can't seem to get past this block.
I can create the service using the v3 api and can get some user specific data back but when it comes to adding playlists ...
6
votes
1answer
103 views
Unable to Delete Videos with the Youtube Data API
Can't get deleting videos to work using the Youtube Data API. I'm using the Python Client Library.
All of this seems straight from the docs, so I'm really confused as to why it's not working. ...
3
votes
2answers
396 views
Detect videos with Youtube playback restriction
I am developing a web service using python and i want to filter out the videos which can not be played outside of the youtube page .
Like on this link ...
0
votes
1answer
134 views
Python Youtube API: upload function not working
I want to create an application that allows user to upload video to Youtube.
Here is the code I tried (adapted from ...
0
votes
1answer
88 views
Youtube Python API: Login status
I am using the sample code to login to youtube:
def auth(email, password):
# Setup service.
yt_service = gdata.youtube.service.YouTubeService()
yt_service.email = email
...
1
vote
1answer
160 views
Downloading YouTube Captions with API in Python with utf-8 characters
I'm using Jeff's demo code for using the YouTube API and Python to interact with captions for my videos. And I have it working great for my videos in English. Unfortunately, when I try to use it ...
0
votes
0answers
589 views
How to retrieve a channel id from a channel name or url
I'm trying to retrieve the channel id of a YouTube channel using the new v3 API. I'm using the Python client and it seems that there is no straightforward way to find the mapping of a YouTube channel ...
2
votes
1answer
591 views
YouTube API v3: Liking a video in Python
I need to be able to "like" a specific video by ID through the new YouTube API v3 for an authenticated user. I am following the activities/insert guide found here:
...
0
votes
2answers
89 views
YouTube API:Cannot make the second request using the same access_token
I am trying to get data using youtube analytic api. After I got the access_token, I can use it to make a request and get the user's info, here is the python request:
...
1
vote
1answer
45 views
Can't find playlist uri after adding it to an account
I'm trying to make a few playlists that contain videos I've located through the YouTube API. This python code creates the playlists fine:
ptitlestart = 'Cute Videos'
ptitlecount = 1
while ...
0
votes
1answer
247 views
Is there a way to auto-resume interrupted uploads to youtube using Python GData?
I'm currently using the default settings (which I believe use API v. 1) and the standard youtube-upload python script to upload videos. However, any slight interruption in the network gets the entire ...
0
votes
0answers
108 views
Youtube API authentication
I'm writting a prog using YouTube API . The goal is to get as much info for an authenticated user .
I login with :
yt_service = gdata.youtube.service.YouTubeService()
yt_service.email = ...
1
vote
1answer
222 views
Enable Monetization on YouTube video using YouTube API
I am uploading videos to YouTube by using YouTube Data API (Pyhton client library). Is it possible to set monetizing for that video from API rather than going to my account on YouTube website and set ...
1
vote
1answer
312 views
Youtube api get top 10 most viewed with python
A have a little problem/question.
Im trying to retrieve the most videos from the youtube api, but it seems that my output are not correct.
when I'm using this url ...
2
votes
2answers
70 views
How do I get the right regex in the url conf for this string?
The current regex is:
url(r'^partner/(?P<author>[-\w]+)/(?P<video>\w+)/(?P<title>\w+)/$', 'video_player'),
I've been trying for while now and can't get it to work where title ...
2
votes
2answers
608 views
How to get all YouTube comments with Python's gdata module?
Looking to grab all the comments from a given video, rather than go one page at a time.
from gdata import youtube as yt
from gdata.youtube import service as yts
client = yts.YouTubeService()
...
1
vote
1answer
226 views
Youtube API v2 client for Python
YouTube API v1 has been deprecated and switching to v2 or later is recommended. However Python seems to be the only language left with v1 client. PHP, Java and others got v2.
Has python client been ...
1
vote
0answers
306 views
Youtube Python API
Is there a Python implementation of the Youtube API, other than the gData package?
I'm talking about something along the lines of the Heroku or Github Python bindings. The gData package seems to be ...
5
votes
1answer
121 views
Can't figure out a way to escape quotes in json in YouTube API
I am using the YouTube API and I'm using Python urllib2.urlopen() to send a GET request. Then I pass the result to Javascript. (I'm using Django)
So, something like this:
result = ...
1
vote
1answer
287 views
Socket error when using gdata Youtube API in Python
I'm using gdata to map YouTube URLs to video titles, using the following code:
import gdata.youtube.service as youtube
import re
import queue
import urlparse
ytservice = youtube.YouTubeService()
...
0
votes
1answer
134 views
How to get video id of the successfully uploaded youtube video?
I am uploading video to youtube by using their API. After the successful upload, i want to get the video id which i am unable to find. I have found this in the video_entry object as id.
...
1
vote
0answers
64 views
how to retrieve any restrictions on a youtube video?
i am working on getting videos from YouTube. This link has been very helpful:
https://developers.google.com/youtube/1.0/developers_guide_python#code_printVideoEntry
Except that i couldn't really make ...
0
votes
1answer
337 views
How to upload youtube videos via gdata.youtube python library in Django
I have a python/django powered app which has a feature that I can post videos to youtube by using the gdata.youtube python library
My reference is as follows: ...
1
vote
2answers
318 views
how to make youtube videos embed on your webpage when a link is posted
I have a website that gets a lot of links to youtube and similar sites and I wanted to know if there is anyway that I can make a link automatically appear as a video. Like what happens when you post a ...
0
votes
2answers
468 views
Python - Making a POST request
I'm trying to use Youtube apis in my web application by following this guide https://developers.google.com/youtube/2.0/developers_guide_protocol_oauth2#OAuth2_Server_Side_Web_Applications_Flow I've ...
2
votes
4answers
65 views
Would this be a reasonable use-case for lazy evaluation?
I have a python class called Video, which represents YouTube videos. Given the ID of a YouTube video, Video returns an object representing that video. However, when a Video object is first created, ...
0
votes
0answers
192 views
Play multiple YouTube videos and have sound go out through different channels
I want to be able to play two YouTube video on the screen but have the audio for one come out from the speakers on the computer and have the audio for the other streamed to another computer. Getting ...
0
votes
1answer
233 views
How to gather personal information (age,gender..) of all the authors of the comments on a specific video, with Python YouTube API
I'm using YouTube API with Python. I can already gather all the comments of a specific video, including the name of the authors, the date and the content of the comments.
I can also with a separate ...


