My wish for a YouTube Playlist script was a bit misunderstood here:
http://www.jeroenwijering.com/?thread=7362
See, YouTube.com has this thingy called a "Playlist". its a collection of YouTube videos that you create in your YouTube account. you can make several different youtube playlists on one YouTube account. They are named and stored in your YouTube account. Notice, when you're watching a video on the YouTube site, there's a link under the video which says "Add To Playlist". That's what i'm talking about.
this request is NOT for playing an arbitrary list of YouTube videos, or video ID's stored in a database, or YouTube favorites, or tagged videos. It's ONLY for playing an official "YouTube Playlist", saved on a YouTube user account.
YouTube does NOT provide an RSS feed for their playlists. As a result, you have to roll my own, to play them on the jw flv player. It's a matter of getting the actual flv url's for each vid, and then generating an xml file that the flv player likes.
Problem: i often add and remove videos from my YouTube playlist, and my list contains about 75 videos. So, of course I don't want to manually hardcode the xml file for the jw flv player every time i add or remove videos from my YouTube playlist. I want the flv player to always be up-to-date, without manually editing the flv xml file.
i think i figured out how, but it requires writing a php script to generate the xml on the fly.
Step 1: There are services which deliver an RSS feed from a YouTube playlist, such as ubeek.com. That gets your individual video ID's in xml form. the basic idea is to run a couple of batch processes on this feed, to transform it into something the flv player understands.
Step 2: the ubeek feed does NOT contain the actual flv's, just the YouTube ID's for each video. you need to replace the ID's with the flv's. The following service converts a single YouTube ID into an flv:
http://cache.googlevideo.com/get_video?video_id=kieyjfZDUIc
What's needed is a script to run that on each of the ID's output by ubeek, to get the flv's for all the videos in the playlist.
Step 3: you need to strip away the ubeek id's and titles.
Step 4: Last, you'd need jeroen's External_Feed.php script, since the flv's are not hosted on the same server as the player.
I think this might be an easy script to produce for an experienced php coder. i might attempt it, but it will take me decades. maybe someone can think of an easier way to achieve it. or, perhaps some kind soul would be willing to any small part of the script?
Suggestion: it's for the following site, so if your politics are such, you might be inspired to code this up to support the cause :)
picnictoimpeach.us
many thanks

@johnny why,
A while back i posted quite a few scripts to convert various RSS feeds to XSPF playlists.
That's the easy part. The hard part is that the sites arbitrarily change their code; then the script is broken. I figured that since I did 99% of the work, the user could maintain the script. I simply don't have the time.
The script for YouTube reads a simple text file:
http://youtube.com/watch?v=fcy8QcS21PAhttp://youtube.com/watch?v=Zi_760pnGtg
http://youtube.com/watch?v=sLNZ0QuNtmg
http://youtube.com/watch?v=VWBM6kcWswM
http://youtube.com/watch?v=Gpd0fhwVGyY
http://youtube.com/watch?v=wcbPLWrE3zA
http://youtube.com/watch?v=8W-Iv5Js16k
Then it gets the working URL and creates the XSPF playlist.
It could read your YouTube playlist if it has similar links. I don't have a YouTube playlist, so I don't now what the format of it is.
You don't need an external feed script. Only the playlist file falls under the Flash security restriction. If you used the external feed, it would be your bandwidth DOUBLE (once in, once out), that was being used.
I might be inspired to help...
Can you provide me with a YouTube playlist?