Mercurial > public > bravenewsurf
view tools/get_vids.py @ 79:548b9e61bd64
Updated bands.json to include "asset_prefix" tags for all the bands.
Incorporated all the small images from Ferenc into the bands slideshow.
Went through and crushed all the large images to fit within 800x600.
Make sure to "manage.py loaddata bands.json" after picking this up.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Fri, 25 Nov 2011 16:54:59 -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)