heres a status update.
currently i have it working with 22 video sites, i still need to do 8 more. 5 of them require advanced logic and the other 3 are adult sites.
a fun feature for 1.2 will be the ability to globally control the embed size to a fixed size or reduce all by a %. (may add an max/min height and width)
also its easy to add gobal embed attributes now its going to be as easy as this:
(in the admincp)
Code:
attributes.allowFullScreen = 'true';
attributes.wmode = 'opaque';
and this one will still support the custom replacement, it will work a little differently though.
width = __videow__
height = __videoh__
title = __videot__
href = __videohref__
containerid = __videoe__
so for this one you will basically need to use a containerid because it uses swfobject so your custom replacement can be as simple as this:
HTML Code:
<div id="__videoe__"></div>

(in other words its coming along nicely)