This is a message.

Forum user: jeffropelato

Basic information

Registered Oct 28, 2008
Last login Oct 20, 2011
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/5958

Latest forum posts

Posts:

Registered:

Sub Sub Domains

Posted: May 22, 2009

I have noticed that sub sub domains do not work. For example the main subdomain.http://www.anti-virus-software-review.toptenreviews.com/bitdefender_video1.html

Domain = TopTenReviews.com
Sub Domain = Anti-virus-software-review
Sub Sub = if someone throws a www. on in front of the subdomain

http://www.anti-virus-software-review.toptenreviews.com/bitdefender_video1.html

Then the flowplayer logo shows up. Can we get this fixed? Not that I mind promoting flowplayer you guys have a great product. The video director just gets upset with me when he sees it.

Thanks

Posts:

Registered:

Work Around

Posted: Jan 16, 2009

A Work around we did was just set a cuepoint of 1 second. So after 1 second of play your script will execute and not on the buffering. which is pretty much the same as onstart.

You can see a working sample on our homepage.
TopTenREVIEWS


 <script language="javascript"> 
$f("playerContainer", {src:"path/to/flowplayer-3.0.3.swf", wmode:"opaque"}, {
key: '',
	clip : {
		autoPlay: false,
		autoBuffering: true
	},
	playlist: [
		{
			url: 'http://www.toptenreviews.com/video/photo-slideshow-software-c80-video-1.flv',
			autoPlay: false,
			onStart: function(clip) {
				this.onCuepoint([1], function(clip, cuepoint) { 
					pageTracker._trackPageview("video-url-start=" + clip.url);
				}); 
			},
			onFinish: function(clip) {
				pageTracker._trackPageview("video-url-end=" + clip.url);
			}
		}
	]
});
</script>