Я наконец нашел решение для того, что я хотел сделать.Если кто-нибудь когда-нибудь заинтересуется этим, вот оно: (я использую mootools)
function blipEmbed(episodeId) {
var swf_id = 'embeddedPlayer';
var moogaloop = new Swiff('http://blip.tv/scripts/flash/stratos.swf', {
id : swf_id,
container : 'playerHolder', /* the container's id where the swf will be embedded, i used a div */
fullScreen: true,
width : 1000,
height : 500,
vars : {
file: "http://blip.tv/file/"+episodeId+"?skin=rss",
autostart: true,
allowm4v: true,
showstrands: false,
showguidebutton: false,
showplaylist: false,
showsharebutton: false,
showmorebutton: false,
showfsbutton: false,
removebrandlink: true,
showinfo: false,
useoldendcap: false,
enablejs: true
}
});
}
/* and for the callback, blip forces you to use this function*/
function getUpdate(changeType, param1, param2){
if (changeType=="complete") {
// when the video is done playing, do something
}
}