Tagged Questions
0
votes
1answer
15 views
Youtube API Community Data Username
I'm working on a python script to scan a youtube video for the usernames of people that have commented on the video and write their usernames to a file.
I'm using the youtube API, and I'm able to get ...
0
votes
3answers
29 views
Taking Spaces out of a string and Replacing them with “+” [duplicate]
Im writing this program that searches YouTube for a part of a bigger program
when the user inputs the search phrase it might have spaces but i don't want those spaces i want "+" instead so that the ...
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
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 ...
1
vote
0answers
57 views
Google App Engine (Python), OAuth2, Service Accounts, User Delegation, Youtube Service
I'm using the Youtube Data API (v3), along with the Python client library on Google App Engine.
Here is a simple snippet of code that fails:
kwargs = {'prn' : google_oauth_user_email}
credentials = ...
0
votes
1answer
47 views
Iterating based on list of strings in Python
With a list of YouTube videoIDs in a text file, the code below aims to loop through these while getting the comment feeds from all these videos. Could anyone spot the looping error(s) I must have ...
0
votes
0answers
32 views
python youtube api upload on user behalf
I have a situation where I would do the following
user uploads a video
I will re-encode the file to MP4
I need to share it to Youtube after re-encoding.
I was able to setup OAuth URL and get the ...
0
votes
1answer
54 views
How do I use an OAuth2 token with ANY version of the youtube python API
I'm grabbing an Oauth2 token with some functions I stripped out of:
https://code.google.com/p/google-api-python-client/source/browse/#hg%2Foauth2client
I tried:
yt_service = ...
1
vote
0answers
31 views
Status of video uploaded via YouTube Data API is always “processing” (Python)
I'm using the YouTube Data API (in python) to upload a video. The video uploads successfully, and I get back a YouTubeVideoEntry object. I'm then polling the uploaded video's status as recommended ...
0
votes
1answer
157 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 ...
-1
votes
2answers
711 views
'NoneType' object has no attribute 'group'
Can somebody help me with this code? I'm trying to make a python script that will play videos and I found this file that download's Youtube videos. I am not entirely sure what is going on and I can't ...
2
votes
0answers
66 views
Python urllib basic script for youtube
I am trying to download a video from Youtube, and have tried the following:
url = "http://www.youtube.com/watch?v=f4l3pBovB_c"
urllib.urlretrieve(url,"test.mp4")
It creates the file test.mp4, but ...
0
votes
2answers
56 views
How to retrieve a Youtube page without starting to stream the video?
I'm actually not sure if it tries to stream the video at all, it just takes a few seconds longer than normal to parse a YouTube page.
I'm looking to parse a random Youtube video page to see if it ...
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
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 = ...
1
vote
0answers
178 views
Make a thumbnail from a online streaming video
I am trying to see if it is possible to make a thumbnail pic from an online video (videos run in flash) programmatically. Just to elaborate on what I am exactly looking to do:
I have a link to to a ...
0
votes
1answer
109 views
Attempting YouTube upload through Python API gives 'Developer key required for this operation' Error
I am attempting to upload a video to YouTube using the developer key that I obtained as paired with credentials for a particular user. It seems to me that my YoutubeService object should have the ...
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
104 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. ...
1
vote
0answers
89 views
How to fetch movies URl from youtube
I want fetch movies URl from youtube for my youtube app.
I am able to search videos based on there ID , Videos from channel , But i want URL from youtube movies , trailers section...
I am using this ...
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
105 views
QWebview: Upload to Youtube return error
Here is my situation:
I have created a QWebview, loaded a Youtube page, and logged in.
I select upload option (http://www.youtube.com/my_videos_upload), and choose
a video to upload. However, youtube ...
0
votes
1answer
104 views
Trouble using gdata and Unicode Cyrillic in Python
I have this code
# -*- coding: utf8 -*-
__author__ = 'user'
import gdata.youtube.service
yt_service = gdata.youtube.service.YouTubeService()
query = gdata.youtube.service.YouTubeVideoQuery()
...
1
vote
1answer
255 views
How to catch YouTube embed code and turn into URL
I need to strip YouTube embed codes down to their URL only.
This is the exact opposite of all but one question on StackOverflow. Most people want to turn the URL into an embed code. This question ...
0
votes
1answer
118 views
How do I parse youtube xml for a specific entry?
I am trying to return the duration of the video but am having trouble.
#YOUTUBE FEED
#download the file:
file = urllib2.urlopen('http://gdata.youtube.com/feeds/api/videos/2s0vk2wEMtA')
#convert to ...
1
vote
1answer
130 views
watch History feed gdata python
I'm trying to get history feed from YouTube of an authenticated user with python.
This is my code :
yt_service = gdata.youtube.service.YouTubeService()
def LogIn():
login_name = ...
0
votes
1answer
110 views
Youtube GData 2 thousand most viewed
I want to catch the 1 thousand most viewed youtube videos through gdata youtube api.
However, only the first 84 are being returned.
If I use the following query, only 34 records are returned (plus ...
1
vote
2answers
108 views
python TypeError : unbound method UpdateVideoEntry() must be called with YouTubeService instance
I'm trying to update an entry using the youtube api. Here is my error i'm struggling with:
Traceback (most recent call last): File "", line 1, in
updated_entry = ...
1
vote
0answers
39 views
Maintaining a persistent connection during video upload
I have a flash video upload that is going from the browser directly to S3. It works.
However, if the connection is interrupted, it will time out after about three seconds. On the other hand, if you ...
0
votes
1answer
221 views
How can I download YouTube audio with Python?
How can I download the audio from a YouTube video with Windows, using Python 2.7? I have seen many results that work with Linux but I haven't been able to get anything to work with Windows.
0
votes
1answer
116 views
AuthSub. How to check token existence? Python gdata client
I develop a decorator to authenticate my app and start to work with youtube API. Decorator appointed to wrap a REST resource class methods.
def youtube_auth(f): ...
0
votes
1answer
115 views
How can I put data from YouTube videos into an Excel spreadsheet?
I am trying to get data from the first hundred or so results when searching for something on YouTube. I found a few strings of code that Google offered but I am having trouble executing them properly:
...
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()
...
1
vote
2answers
447 views
Youtube in Webkit/Python/GTK app
I'm trying to do a python(2.7)/GTK+ app, and I have a window, containing a WebKit WebView.
from gi.repository import Gtk, WebKit
class MainWindow:
def __init__( self ):
self.builder = ...
0
votes
1answer
156 views
Youtube Video upload
I'm trying to make a video upload to youtube using the gdata api.
I also had a look at the hello-youtube example.
Does anyone knows if I can use youtube browser upload without requiring the user to ...
0
votes
0answers
199 views
How do I download YouTube videos with Python? [closed]
I've Googled for the last hour and all the answers are either outdated and not working or for something completely different. I know of youtube-dl, but that's such a big program and I just want a ...
0
votes
0answers
422 views
Convert youtube playlist into an .M3U file using Python
Here's a treat for you VLC lovers out there!
I've been hoping to convert a couple of YouTube playlists into .M3U files and, apparently, a program called playlist-dl.py I found at this website can do ...
1
vote
0answers
324 views
VLC Python doesn't play youtube video
When trying to play a YouTube URL with VLC via the Python bindings, the video does not actually play.
Here is my code which does the playing:
def play(self, mrl):
self.instance = ...
1
vote
0answers
59 views
Python packages documentation - gdata
i am writing a code that gets a youtube video UR, gets its id and then displays all info related to it.
i came across this method: gdata.youtube.YouTubeVideoEntry - but could not find any fully ...
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: ...
0
votes
1answer
292 views
How do I fetch youtube title and description from given url using python code?
How do I fetch youtube title and description from python code from the given url. Is it necessory to use youtube API for it? I am writing a program which need to find generate title and description ...
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
0answers
99 views
Django: Help in uploading youtube videos via django-syncr
I have a Django app that allows users to upload their videos in youtube as part of the website's functionality. When I upload a video it throws a 500 INTERNAL SERVICE ERROR whenever I run Firebug and ...
0
votes
2answers
469 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 ...
0
votes
1answer
172 views
Python oauth for youtube
I'm trying to implement youtube authenticated user's videos in my web application. Using oauth I want to connect to youtube apis. Here is the code I took it from github which I'm using now ...
1
vote
1answer
103 views
Why won't this python script input into a MySQL table I set up?
I'm trying to pull data from the YouTube API into a local MySQL table. I went through a bunch of debugging until I landed on the below script, but I get no errors from this script, so I'm a bit lost. ...
5
votes
2answers
671 views
Generating Links to Youtube Audio
I have been for a while now, as part of a larger project, trying to find a way to stream Youtube AUDIO into an application without downloading the corresponding file.
What I have as of now is a ...
2
votes
4answers
4k views
How to download a youtube video using the youtube's API?
I looked at the python's API overview: Developer's Guide: Python
But there is no reference to how to download a video. Does anyone know where can I get information regarding downloading?


