This is a message.

Forum user: eiserloh

Basic information

Registered Nov 12, 2008
Last login Jan 16, 2009
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/6182

Latest forum posts

Posts:

Registered:

Fullscreen Mode Breaks Aspect Ratio of Video

Posted: Jan 16, 2009

I have list of videos (link here) that use the overlay plugin nicely. However, when you view the videos (which are 16:9) in fullscreen mode, this aspect ratio is lost. For example:

My 16:9 videos become 4:3 videos on a 4:3 monitor. This should, of course, not happen. There should be black bars above and below the video, like when you watch an HD DVD on a nonHD TV.

Is this a bug? Is there a fix?

Posts:

Registered:

playist with overlay plugin?

Posted: Jan 15, 2009

Is it possible to have a playlist when using the overlay plugin? My goal is to be able to attach a certain FLV(an intro flv) in front of another FLV(mainvideoA), but only with this FLV(mainvideoA). The rest of the FLVs on the page will play without this intro flv.

My code:


	$(function() {

		$("img[@rel]").overlay({
			speed: 1000,
			clip: {  
				autoPlay: false,
				loop: false		 
			},
			onBeforeLoad: function() {
				this.expose();	
			},				
			onLoad: function(content) {
				$("a.player", content).flowplayer(0).load();
			},
			onClose: function(content) {
				$("a.player", content).flowplayer(0).unload();
				$.unexpose();
			}
		});				
		
		$("a.player").flowplayer("http://www.lightwavedigital.com/clients/promisebuildings/swf/flowplayer-3.0.3.swf", {
			clip: { autoPlay:false, autoBuffering: true  },
			plugins: { 
						controls: { 
									autoHide: 'always',
									fullscreen:false
								  }
					 }
		}); 
		
	});	

A url to preview what I have thus far:

http://www.lightwavedigital.com/clients/promisebuildings/

THANKS!