OK, this has got me beat. I've been implimenting flowplayer using the flashembed jquery tool, and it has been perfect getting it working cross-browser.
However, the one thing which refuses to play ball is the scale param of config/clip. As a consequence, when full screen playback is activated by the user, the video's aspect ratio distorts to fill the whole window as opposed to staying in the intended 16x9 presentation.
The player will respect the autoPlay and autoBuffering params I have used without a hitch, however despite what I try it just won't maintain the aspect ratio.
I have referred to the Flash OBJECT and EMBED tag attributes on the Adobe website, as advised in the flashembed documentation but to no success.
My code is below, and there's a good chance this might be a rookie mistake. If anyone can help me find it, I'd be really appreciative.
However, the one thing which refuses to play ball is the scale param of config/clip. As a consequence, when full screen playback is activated by the user, the video's aspect ratio distorts to fill the whole window as opposed to staying in the intended 16x9 presentation.
The player will respect the autoPlay and autoBuffering params I have used without a hitch, however despite what I try it just won't maintain the aspect ratio.
I have referred to the Flash OBJECT and EMBED tag attributes on the Adobe website, as advised in the flashembed documentation but to no success.
My code is below, and there's a good chance this might be a rookie mistake. If anyone can help me find it, I'd be really appreciative.
<html>
<head>
<!-- include flowplayer specific files -->
<script src="/_global/applications/flowplayer/tools.flashembed-1.0.3.js"></script>
</head>
<body>
<!-- setup player with standard HTML syntax -->
<script>
// supply configuration (flashvars) for the Flash object
flashembed("flash", "/_global/applications/flowplayer/flowplayer-3.1.2.swf", {
// "config" parameter is a complex JSON object, not just a simple value
config: {
clip: {
autoPlay: false,
autoBuffering: true,
initialScale: 'scale',
scale: 'noorder',
url: '/business_development/science_resources/seed_technologies/video/sandalwood_presentation.flv'
}
}
});
</script>
<div id="flash" style="display:block;width:320px;height:196px;"></div>
</html>

