2011-12-14 9 views

答えて

1

あなたはこのサンプルコードは、E6DE6EC9A373AF57

playlist_feed = api.GetYouTubePlaylistFeed('http://gdata.youtube.com/feeds/api/playlists/E6DE6EC9A373AF57') 
first_video = playlist_feed.entry[0] 
entry_uri = [l.href for l in first_video.link if l.rel == 'related'][0] 
video_entry = api.GetYouTubeVideoEntry(entry_uri) 
print video_entry.GetSwfUrl() 

プリント

プレイリストの最初のビデオのSWFUrlを印刷取得しますSWFUrl

を得るために、YouTubeのAPIに対する追加要求をしなければなりません

http://www.youtube.com/v/ADos_xW4_J0?version=3&f=videos&c=myid&d=AZI70qgwnzygE0LbSLCTnAwO88HsQjpE1a8d1GxQnGDm&app=youtube_gdata 
関連する問題