You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: Liam Gooding Custom swf skins, custom swf plugins, custom JS plugins, video CMS - http://goodingsmedia.com

Basic information

Registered Dec 16, 2008
Last login Oct 9, 2009
Forum posts 338
Direct URL http://www.flowplayer.org/forum/users/7026

Latest forum posts

Posts:

Registered:

» Hi Liam!

Posted: Oct 9, 2009

Thanks!!! Well get that corrected straight away!

Posts:

Registered:

Now Test All Our Plugins For Free (Fully Functional)

Posted: Oct 6, 2009

Hi Guys,

Due to popular demand, we've now completely changed our licensing for our commercial Controlbar plugins!

+ALSO+ We have added Embed (beta*) to our Plus+ controlbars!

You can now download and test them completely free, and they're FULLY FUNCTIONAL! If a valid commercial license key is incorrect/missing, there will be a large watermark rendering the video useless for production but perfectly fine for testing.

I know we were slow to adopt this protection method but it's now inline with the ethos of the main Flowplayer Commercial Player.

Please view the blog post here:

http://goodingsmedia.com/2009/flowplayer-plugins-updated-now-test-for-free-and-embed-functionality-added/

View and Download The Plugins Here:

http://goodingsmedia.com/services/flowplayer-plugins/

Please note: We can't offer any technical support or installation help for non-license holders.

Thanks guys and have fun playing!
Liam Gooding

* The embed feature isn't quite finished, it relies on the Javascript Embed Plugin for now until we've finished the purely Flash implementation.

Posts:

Registered:

» Free Controlbar Plugin

Posted: Oct 6, 2009

Slight update, but critical!

http://goodingsmedia.com/labs/walnius/zip/controlbar.gm.walnius-3.1.3.2.zip

Posts:

Registered:

Free Controlbar Plugin

Posted: Sep 8, 2009

Hi Guys,

We're shortly launching a free video wordpress theme fully kitted out with Flowplayer goodies, and to go along with it is this controlbar:

http://goodingsmedia.com/labs/walnius/

We've decided to release this a bit early as it's pretty much done so people can be getting use out of it while we're playing with getting the Wordpress theme finished up.

You can download the player here:

http://goodingsmedia.com/labs/walnius/zip/controlbar.gm.walnius-3.1.3.1.zip

This is NOT open source. We are simply releasing it free for:

- Commercial Use
- Free Use
- Unlimited Domains

The controlbar has attribution coded into it's right click menu. You should not attempt to remove it. Other than that, play with it and do with it as you please. If it's popular enough, we might make a Plus+ version of it.

Thanks,
Liam Gooding

Posts:

Registered:

» Recommend a robust Social Framework to use with Flowplayer..?

Posted: Sep 5, 2009

If you want the site to be editorial, you can;t go wrong with Wordpress.

Posts:

Registered:

Helious Plus+ Released! Vimeous Plus+ Updated! Timeline Markers!

Posted: Sep 2, 2009

Hi guys,

Just an update

We've now updated all our custom controlbars for Flowplayer v 3.1.2 fixes.

We have also released a (much requested) Helious Plus+ controlbar!

http://goodingsmedia.com/labs/heliousplus/

Our new Plus+ framework includes:
-> Timeline markers with tooltips that popup on mouseover
-> ClipMode which allows a segment of the clip to be looped and extracted using the draggable Handles
-> Custom events (added to core FP from 3.1.2)

Anyone interested should contact us here or get in touch via our website:

http://goodingsmedia.com/contact/

Thanks guys,
Liam Gooding

(Full blog post here)

http://goodingsmedia.com/2009/vimeous-and-helious-both-get-updated-to-flowplayer-3-1-2/

Posts:

Registered:

» Callback when control bar hides and shows... ?

Posted: Aug 30, 2009

Hey,

This was added in 3.1.2 after we implemented it into our 3.1.1 custom controlbar plugins.

Download the new source and you'll be able to see an implementation.

Cheers,
Liam

Posts:

Registered:

» 100% Flow Player html installation estimate needed

Posted: Aug 20, 2009

Hey,

We could handle this, contact us here:

http://goodingsmedia.com/contact/

Thanks,
Liam

Posts:

Registered:

» » » Cost JQuery Tools

Posted: Aug 20, 2009

Thats just the CDN hosting, but no doubt by then they'll have extended it or got it onto google's cdn service :)

Posts:

Registered:

» Flowplayer Plug-in Needed

Posted: Aug 12, 2009

Hi Tevor,

We would definately be able to roll this out for you. We're based in the UK (Canterbury) so if your local you could pop down to the office, alternatively phone/email is no problem.

I'll drop you an email.

Regards,
Liam

http://goodingsmedia.com/contact/

Posts:

Registered:

» Looking for Developer

Posted: Aug 12, 2009

Hi Stashrider,

We're a development company based in UK (Canterbury). We've written plenty of custom plugins for flowplayer now, including:

Adding custom markers to extract clips from the timeline
Embedding a thumbnail navigation timeline
Premium payment plugins
Adserver plugins
Adding custom events and new buttons
Creating/Implementing custom skins
Custom SMIL plugins
Bespoke license protection algorithms

If you'd like to get in touch, please head over to:

http://goodingsmedia.com/contact/

Thanks,
Liam

Posts:

Registered:

» need developper for implement my code for thumbnail

Posted: Aug 6, 2009

You need to work with ffmpeg for server side thumbnail generation, not flowplayer itself.

Posts:

Registered:

Updated Helious Controlbar

Posted: Jul 27, 2009

Hey Guys,

Just a quick ping as a few people have emailed me about it, Helious Controlbar has now been updated.

UPDATES

- Added playlist controls and fullscreen
- Added option to choose between our custom 'fade out' effect and the standard 'slide out' effect
- Added 2 JS events for the controlbar hiding/showing

http://goodingsmedia.com/2009/flowplayer-controlbar-helious-updated-to-3-1-1-4/

-> This is a commercial plugin and requires a seperate license purchase to your Flowplayer License. It IS compatible with both the GPL3 and Commercial versions of flowplayer.

Cheers guys
Liam

Posts:

Registered:

» Possible to start and stop scrollable?

Posted: Jul 27, 2009

The autoscrolling is been ported over to a seperate plugin to change how scrollable handles this.

Currently, it will pause on mouse-over and resume on mouse-out as default behavior.

http://flowplayer.org/tools/demos/scrollable/autoscroll.html

From Line 404 onwards over the source-code of JUST scrollable 1.0.5


// interval stuff
		var timer = null;

		function setTimer() {

			// do not start additional timer if already exists
			if (timer) { return; }
			
			// construct new timer
			timer = setInterval(function()  {
					
				// check if interval is being changed dynamically during runtime
				if (conf.interval === 0) {					
					clearInterval(timer);
					timer = 0;
					return;
				}			
				
				self.next();				
			}, conf.interval);
		}	
		
		if (conf.interval > 0) {			
			
			// when mouse enters, autoscroll stops
			root.hover(function() {			
				clearInterval(timer);		
				timer = 0;
				
			}, function() {		
				setTimer();	
			});
			
			setTimer();	
		}

Posts:

Registered:

» » FLowplayer and jquery.pngFix.js ?????

Posted: Jul 23, 2009

Use the events in the overlay tool to reapply pngFix...

.. just had this crop up myself :)