I'm using flowplayer.pseudostreaming-3.1.2.swf and flowplayer.embed-3.0.2.js for this.
This part of my player cofig (all other i think not necessary):
$f("flow_player",
{
src: "flowplayer/flowplayer.commercial-3.1.0.swf",
width: 290,
height: pl_height
},
{
key: '#@cd64e966926fd397305',
clip:{
url: src_url,
provider: 'lighttpd',
start:0,
autoPlay: true
},
plugins:{
lighttpd:{
url: 'flowplayer/flowplayer.pseudostreaming-3.1.2.swf'
},
controls:{
url: 'flowplayer/flowplayer.controls-3.1.0.swf',
height: 20,
}
}
...................
});
With parameter start i got almost that need. This embeded text created player which start playing on xx second. But video before xx second unavailable (control bar timeline on begin). I try use instead propety "start" - seek(xx) when clip begin playing (event onStart). But events not embeding.
My question:
How I can embed player that will be load whole video and start playing from xx second (and control bar will be on position that responsing xx second (will be not on begin of timeline))?
