I got it to work :-) It's fantastic!!
Much better than iFraming Youtube with TextObject. You get rid of the adds, what a nice bonus.
And I can mix with my self hosted video's. And skin the player. Gonna get a license.
I just did it with the TextObject, no need to install the flvplayer plugin although you could write one later to set the default options. iPad support and all, whoooo.
On image.php I just included the javascript file:
`<script type="text/javascript" src="_PATH_TO_/zp-extensions/flvplayer/jwplayer.js"></script>`
and than I made TextObjects like:
`
Loading the player ...
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "_PATH_TO_/zp-extensions/zp-core/zp-extensions/flvplayer/player.swf",
file: "_YOUR_YOUTUBE_VIDEO_PATH_",
height: 360,
width: 640
});
</script>
`