Mercurial > public > bravenewsurf
view tools/get_vids.py @ 71:c9a2c21b68bd
Making some tweaks to the design as per feedback from Ferenc.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 23 Nov 2011 16:38:31 -0600 |
parents | a0d3bc630ebd |
children |
line wrap: on
line source
""" Quick & dirty Python script to retrieve the video IDs of all the videos in a playlist on YouTube. """ import urlparse from gdata.youtube.service import YouTubeService PLAYLIST_ID = '26E22C14D94D323F' yt = YouTubeService() feed = yt.GetYouTubePlaylistVideoFeed(playlist_id=PLAYLIST_ID) print "Feed contains %s videos" % feed.total_results.text vids = [] while True: vids.extend(feed.entry) next_link = feed.GetNextLink() if not next_link: break feed = yt.Query(next_link.href) print "Got %d videos" % len(vids) vid_ids = [] problems = [] for vid in vids: for link in vid.link: url_data = urlparse.urlparse(link.href) query = urlparse.parse_qs(url_data.query) if 'v' in query: vid_ids.append(query['v'][0]) break else: print "Video id not found for %s" % vid.title.text video_id = vid_ids[0] playlist = vid_ids[1:] print "videoId: '%s'," % video_id print "playerVars: { playlist: [ %s ] }," % ','.join("'%s'" % v for v in playlist)