I basically saved the contents of the DOM element containing the player element in jQuery data in the DOM ready:
$('.video-holder').each(function(i,el){
$(el).data('init-state', $(el).html());
});
... then reset the contents (thereby separating the Flowplayer instance), invoking the saved data back to the HTML element of the holder, to effectively "reset" it:
$('.video-holder').each(function(i,el){
$(el).html($(el).data('init-state'));
});
, Flowplayer, , . , , , , Flowplayer - , , , .