This is a message.

Forum user: kadoudal

Basic information

Registered Feb 14, 2009
Last login Sep 8, 2011
Forum posts 30
Direct URL http://www.flowplayer.org/forum/users/8364

Latest forum posts

Posts:

Registered:

Form in Tooltip

Posted: Aug 17, 2011

It maybe a silly question .. but so far I have not seen yet any demo ..

is it possible to have a form inside Tooltip.. ?

I have seen a lot of demo about using at toll tip in a form... but I'll rather need a tooltip open when the user click on an image and display a form inside the tooltip to be filled by the user ... ( i.e. email textfield + submit button .. so the user could request more info about the image ...)

if not with JQueryTools... any jQuery plugin ?

thanks

Posts:

Registered:

recording

Posted: Jun 24, 2010

Is there anyway to 'play and record' the resulting stream ?
I am using the OpenX AdStreamer plugin, which create a playlist in FlowPlayer... I would like to record the played sequence as a whole unique clip ?
is it possible ?

thanks for your feedback

Posts:

Registered:

June 2010... no change

Posted: Jun 6, 2010

getting the same problem one year later....
no way to use multiple playlists with jQueryTools and Ajax calls

Posts:

Registered:

setPlaylist for selected player ...?

Posted: Jun 5, 2010

Is it possible to to set a playlist for another player upon clip starting in one player ?

I have written a script for player2 (displayed in one pane), upon selection of a clip, I get a list of clips to be played by the player3...

$(function() {	
	$("#playlist_2").scrollable({ ... });
	
$f("player2", "/dist/flowplayer-3.2.2.swf", {
	clip: { baseUrl: 'http://view.vzaar.com', autoPlay: false },
	playlist: [....],
});
$f("player2").playlist("div#clips_2:first");
	
$f("player2").onStart(function(clip) {
// replace player3 playlist with this new one
	$.getJSON("attachments", { id: clip.id  }, function(data){
		$f("player3").setPlaylist(data);
        });
    });
});

in the 3rd pane, I have writtent :

$(function() {
$("#playlist_3").scrollable({.....});	
	$f("player3", "/dist/flowplayer-3.2.2.swf", {
		clip: {
			baseUrl: 'http://view.vzaar.com',
			autoPlay: false
		},
		playlist: [......],
	});
	$f("player3").playlist("div#clips_3:first");	
});

or should I write all jQuery code in one script only.... ?

Posts:

Registered:

changing the player"s playlist

Posted: Jun 3, 2010

old post.. but went into an issue w same message (FP 3.2, JQueryTool 1.2)

I have one player in my page and I switch the playlists in 3 tabbed panes (using jQueryTools, obviously w Ajax call ) .. first display round is fine...
can get and watch clips : tab1 (playlist1) then tab2 (playlist2) , tab3 (playlist3)
but
when hitting again tab2 (or tab1.. whatever)
I get the playlist2 display again , click on any item just acts as a download the clip... doesn't play and I get the JS error message : w._api().fp_play is not a function
(flowplayer-3.2.0.min.js)

in each tab view (tab1, tab2, tab3) loaded with the JQueryTool Ajax call, I have the JS script

<script> 
$(function() {	
	$("#playlist_1").scrollable({
		items:'#clips_1',
		vertical:true,
		next:'a.down',
		prev:'a.up'
	});	
	$f('player', "http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf").playlist("div#clips_1:first");
});
</script>

In my content page have :

		<!-- tab "panes" --> 
		<div class="panes"> 
		    <div style="display:block"></div>
		</div>
			<script>
			$(function() {
				$("ul.tabs").tabs("div.panes > div", {effect: 'ajax'});
			});
			</script>
			<a id="player" class="player plain" style="float:left;margin-left:62px; width:475px"></a> 

what could be wrong ?
are the playlists correctly initialized for the unique player ?

Posts:

Registered:

uploading the first clip of a playlist

Posted: Jun 2, 2010

I am using 3 playlists loaded (Ajax call) into 3 tabs panes ( jQuery Tools olà !!)
and 1 player.
it's running well, can switch and watch all clips... excepted the following scenario :

I click on a clip A in playlist 1) , watch few seconds, then I stop it

I then click on Tab 2 and move to the second playlist 2 ,
the player still display the clip A .. as the player is not re-initialized...
Is there any way to get it ready for the first clip of this new playlist 2

I can stop buffering... but it doesn't get rid of the clip A
thanks for your help

Posts:

Registered:

scrolling to playing clip...

Posted: May 5, 2010

I am using a scrollable playlist... (4 visible clips)
with loop: true
when the loop reaches the 5th clip, the playlist doesn't scroll down automatically..
I believe I need to write a small script function to perform this next() ?

in

$f("playerV").onStart(function(clip) {
...
});
can someone give me a hint on it ?

thanks a lot

erwin

Posts:

Registered:

openadstreamer

Posted: May 3, 2010

thanks for your info...
I have been in touch with Paul Schulz who thinks it might be a good idea to have access dynamically to the plugin config... (ToDo list I guess)

I found a trick (I am not satisfied with...) in
- having a scrollable list of clips references (but not using the playlist plugin)
- using onClick event to modify the player internal playlist (only one clip) and playing again... so I have a new Ad stream sequence

the issue with OpenAdstream + FP playlist is that a complete stream is created and played.... until the use click on pause or select a new clip in the playlist
There is no way to play only one clip + ads and stop , because the loop parameter has to be true....

Posts:

Registered:

getting/setting 3rd party plugin properties

Posted: May 2, 2010

the openAdStreamer plugin has a property "streams" which is a list of files to be played

plugins: {
  openAdStreamer: { 
      url: '../OpenAdStreamer.swf',
     "shows": { 
         "streams": [  {  "file":"../the-black-hole.mp4",  "duration":"00:00:30"  }  ]
     },
.....
from the documentation, I can get an handle to this plugin :

adStreamer = $f().getPlugin("openAdStreamer");
it should return a JSON object , isn't it N
how could I write a script function to change this 'streams' list ?
thanks for your lights ...

I tried :
adStreamer["shows"]["streams"][0];
but I get an error :
adStreamer.shows is undefined

Posts:

Registered:

playlist loop but only few more clips

Posted: Apr 28, 2010

I have a playlist with loop : true
Is it possible to have a loop for 5 clips then pause for 5sec
then start again for another loop of 5 clips.. and so on ?

is it possible to write a script for that ?

any clue thanks a lot

Posts:

Registered:

[SOLVED] using jQueryTools

Posted: Apr 27, 2010

coming from Prototype lib, I must confess that jQuery rocks !
anxious to get a jQuery 1.4 compatible version....

Posts:

Registered:

multi tab playlists

Posted: Apr 25, 2010

I am running very well a scrollable vertical playlist beside a player...

I am trying to have 3 tabbed playlist beside my player, changing the playlist content (html or ajax call) when the user clicks on a tab... (something very common when using proprietary multi-playlists players)

I wonder which way I should go ? (any clue , links)... should I have multi players (like in one example) or is it possible to tab only the playlists...

tricky : where should I put the playlist script setup ... in the tab content or outside ..
I am a little bit lost... ;-))

kad

Posts:

Registered:

LocalSOVolumeStorage : unable to persist volume [ERROR] ?

Posted: Apr 24, 2010

I tried to use the control plugin as stated in the example

plugins: { controls: {url: '../flowplayer.controls-tube-3.1.5.swf',
fullscreen: false, progressColor: '#00ffff', bufferColor: '#CCFFFF', volume: false
colors are OK, no fullscreen... but when I click on the volume I get the following error :

[ERROR] time 16:12:47.298 :: org.flowplayer.controller::LocalSOVolumeStorage : unable to persist volume


what's wrong in my coding ?
thanks

Posts:

Registered:

examples/openadstreamer/flowplayer errors

Posted: Apr 23, 2010

when running examples at :
http://static.openvideoads.org/examples/openadstreamer/flowplayer/index.html

most examples testing OpenX + other Ads servers (i.e : Adtech) are not running as they should ... no ads from these other servers are displayed.... is there any issue with this ?

Integrating Multiple Ad Servers

XML Wrapper Examples

Posts:

Registered:

Open Ad Streamer plugin with external playlist ?

Posted: Apr 14, 2010

Is it possible to use it together ?
I read documentation on using internal playlist but none about external playlist... I don't know how to link the clip being displayed with the "shows" mandatory option in the Ad Streamer configuration....

can anyone gives me any info or link to get it ?

thanks a lot ;-)))

erwin