flowplayer-3.2.0.min.js getHTML() generates incorrect HTML (there is an extra quotation mark):
Looking at the js source,
id="'+o.id+'"" should be id="'+o.id+'"
Looking at the js source,
var html = '<object width="' + opts.width +
'" height="' + opts.height +
'" id="' + opts.id + '"' +
'" name="' + opts.id + '"';
should be
var html = '<object width="' + opts.width +
'" height="' + opts.height +
'" id="' + opts.id +
'" name="' + opts.id + '"';