Using Flowplayer and Embedded Video WordPress Plugin
For those of us that don’t want to purchase a license for the the JW Player that is required for the embedded video plugin from http://www.jovelstefan.de/embedded-video/
I have come up with a simple hack to achieve swf local player functionality with the use of FlowPlayer instead.
Edit your wp-content/plugins/embedded-video-with-link/embedded-video.php
Find the section for define(“LOCAL_FLASHPLAYER_TARGET”
and replace
<object classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=”http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0” width=”".GENERAL_WIDTH.”” height=”".FLASHPLAYER_HEIGHT.””><param value=”#FFFFFF” name=”bgcolor” /><param name=”movie” value=”".get_option(‘siteurl’).”/wp-content/plugins/embedded-video-with-link/mediaplayer/player.swf” /><param value=”file=”.get_option(‘siteurl’).”###VID###&showdigits=true&autostart=false&overstretch=false&showfsbutton=false” name=”flashvars” /><param name=”wmode” value=”transparent” /><!–[if !IE]> <–><object data=”".get_option(‘siteurl’).”/wp-content/plugins/embedded-video-with-link/mediaplayer/player.swf” type=”application/x-shockwave-flash” height=”".FLASHPLAYER_HEIGHT.”” width=”".GENERAL_WIDTH.””><param value=”#FFFFFF” name=”bgcolor”><param value=”file=”.get_option(‘siteurl’).”###VID###&showdigits=true&autostart=false&overstretch=false&showfsbutton=false” name=”flashvars” /><param name=”wmode” value=”transparent” /></object><!–> <![endif]–></object><br />
with this
<script type=’text/javascript’ src=’wp-content/plugins/embedded-video-with-link/mediaplayer/flowplayer-3.1.4.min.js’></script><a href=’###VID###’ style=’display:block;width:425px;height:300px;’ id=’player’></a><script language=’JavaScript’>flowplayer(‘player’, ‘/wp-content/plugins/embedded-video-with-link/mediaplayer/flowplayer-3.1.5.swf’, { clip: {autoPlay: false, autoBuffering: true}});</script>
This assumes that you have downloaded the flowplayer-3.1.5.zip file and moved the contents of that file into your /wp-contents/plugins/embedded-video-with-link/mediaplayer folder.
Good Luck.

