Hi there,
I'm looking to integrate the OVA plugin with our 5.7 JW Player-licensed using the Wordpress plugin. Is there an easy way to make this work? I searched a thread from a few months ago which mentioned getting the wordpress.xml file. Though I couldn't seem to find the file mentioned.
Thanks in advance
Joe
Hi,
Yeh, the Wordpress module isn't officially supported at present, but I have worked up a simple module that you can add in to get OVA working with JW in Wordpress.
You can find the module on the OVA developer site (http://developer.longtailvideo.com/ova) - if you register on the site and then login, go to SVN Source repository, and browse down into "trunk/ova.wordpress"
Equally, you can check out the code with SVN - just follow the instructions on the site about connecting via SVN.
There aren't any setup instructions really, but here's a quick guide. I'll create a tutorial shortly:
Place "ova.xml" in your "wordpress/wp-content/plugins/jw-player-plugin-for-wordpress/plugins" directory. Once it's there you then "enable" the OVA plugin via the JW "plugins" configuration tabs in the JW wordpress plugin...Once enabled, you'll be able to configure "OVA" for a player instance.
Just 1 configuration field is provided "ova.json" - it's a very rough and ready implementation - at the moment this field needs to be completed with a URL encoded version of the OVA json configuration.
So, for instance, to configure a pre-roll ad that is served by OpenX, the ova JSON config would be (it needs to all be on one line, no linebreaks etc.):
{ "debug": { "debugger": "firebug", "levels": "fatal,config,vast_template" }, "ads": { "pauseOnClickThrough": true, "servers": [ { "type": "OpenX", "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php" } ], "schedule": [ { "zone": "5", "position": "pre-roll" } ] } }
and the URL encoded version that you would put into the field would be:
%7B%22debug%22%3A%7B%22debugger%22%3A%22firebug%22%2C%22levels%22%3A%22fatal%2Cconfig%2Cvast_template%22%7D%2C%22ads%22%3A%7B%22pauseOnClickThrough%22%3Atrue%2C%22servers%22%3A%5B%7B%22type%22%3A%22OpenX%22%2C%22apiAddress%22%3A%22http%3A%2F%2Fopenx.openvideoads.org%2Fopenx%2Fwww%2Fdelivery%2Ffc.php%22%7D%5D%2C%22schedule%22%3A%5B%7B%22zone%22%3A%225%22%2C%22position%22%3A%22pre-roll%22%7D%5D%7D%7D
The "ova.json" config approach is messy and trouble-some. If you want more info on that, look here:
http://www.longtailvideo.com/support/open-video-ads/ova-for-jw-player-5/13165/how-to-inject-ova-conf...
Sorry it's not easier to do this right now...
Paul