This is a message.

Forum user: hiflyer

Basic information

Registered Jan 26, 2009
Last login Apr 7, 2009
Forum posts 3
Direct URL http://www.flowplayer.org/forum/users/7866

Latest forum posts

Posts:

Registered:

Free Encoder - TaKa

Posted: Jan 28, 2009

I've played with a few encoders but have been surprised (and annoyed) at the lack of custom size/16:9 support (at least as far as I can figure out) in Riva, etc.
Found one very similar called TaKa http://megafonts.free.fr/flv/index2.html) that has a very easy interface to add/edit the actual command line options for custom sizes/configs.

Posts:

Registered:

» » » Where do you enter code for customizing??

Posted: Jan 26, 2009

You're starting to get past me with only a few minutes' experience with this and no javascript knowledge, but:

I have the url in the a tag and the flowplayer argument. I believe (somebody correct me 'cause I'm just guessing) the url after the clip: is to define that "clip" and its subsequent properties.

You should be able to just add more properties within the clip { }. In my case the first property is the url: definition, the second is autoPlay: you could add another after that like duration: 10 and so on.


flowplayer("player", "/Media/videos/flowplayer-3.0.3.swf", {  
            clip: {   
                    url: '/Media/videos/Three.flv',    
                    autoPlay: false,  
                    duration: 10,
                    } 
            } 
     ); 

Or at least I think that's the way it works. ;-)

Posts:

Registered:

» Where do you enter code for customizing??

Posted: Jan 26, 2009

I had the same "obvious" question. Found the answer at:http://flowplayer.org/documentation/configuration.html#events

"Configuration is given as third argument to flowplayer() function."

So you want to put your arguments after "../flowplayer/flowplayer-3.0.3.swf"

Your simple one line flowplayer could turn into a whole page of code.

Here's mine with the autoPlay off:


flowplayer("player", "/Media/videos/flowplayer-3.0.3.swf", { 
			clip: {  
    				url: '/Media/videos/Three.flv',   
    				autoPlay: false, 
					}
			}
	 );