view tools/get_vids.py @ 87:fbeda0f5f3be

Fix for odd Webkit CSS issue when using jPlayer Blue Monday skin and our CSS. All instances of the Future Bugler font on the Listen page were jaggie and smaller than expected.
author Chris Ridgway <ckridgway@gmail.com>
date Sun, 27 Nov 2011 15:06:26 -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)