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

Your preferred username that is used when logging in.

Forum user: Christian Ebert Flowplayer support

Basic information

Registered May 27, 2008
Last login on wednesday
Forum posts 2803
Direct URL http://www.flowplayer.org/forum/users/4194

Latest forum posts

Posts:

Registered:

» onFinish event with object/embed

Posted: Dec 22, 2011

With direct object embedding you forego the benefits of the JavaScript API, therefore you cannot use events in this kind of configuration.

See:
http://flowplayer.org/demos/installation/alternate/index.html

What is apiKey?

Posts:

Registered:

» Need controls to be readable with JAWS screenreader

Posted: Dec 22, 2011

Could you open an issue including your description/analysis here:
http://code.google.com/p/flowplayer-core/issues/list

Thank you.

Posts:

Registered:

» » » Changes function in new version of flowplayer.ipad-3.2.2.js

Posted: Dec 22, 2011

You're welcome. Marking thread as solved.

Posts:

Registered:

» Video Sharing in Social Sites

Posted: Dec 22, 2011

Yes, you need to add meta attributes to your page. Look here:
http://www.facebook.com/flowplayer?sk=app_7146470109

Posts:

Registered:

» » » IE9 & Commercial Version - What Am I doing Wrong?

Posted: Dec 22, 2011

Nah, it's always easy to spot these things in the code of others ;-) Marking as solved.

Posts:

Registered:

» » » RTMP and Play Again Overlay...

Posted: Dec 22, 2011

Perfect would be no halting of the stream ;-) Marking thread as solved.

Posts:

Registered:

» IE9 & Commercial Version - What Am I doing Wrong?

Posted: Dec 22, 2011

You have a spurious comma before a closing braces here:


backgroundGradient: 'none' }, // <- remove this comma!
});

Especially IE will go on strike immediately with comma mistakes.

Posts:

Registered:

» fullscreen from JS

Posted: Dec 22, 2011

The docs for this demo:
http://flowplayer.org/demos/events/toggle-fullscreen.html
will tell you that this is a Flash security restriction.

Posts:

Registered:

» RTMP and Play Again Overlay...

Posted: Dec 21, 2011

Try this in the common clip configuration:


clip: {
  onBegin: function () {
    this.getPlugin("play").show();
  },
  onBeforeFinish: function () {
    this.getPlugin("play").hide();
  }
}

This should remove the play again button completely, whilst keeping the play button on pause.

Posts:

Registered:

» Changes function in new version of flowplayer.ipad-3.2.2.js

Posted: Dec 21, 2011

The devel version of the ipad plugin can handle playlist based splash images. Grab it from here:
http://flowplayer.blacktrash.org/dev/flowplayer.ipad.js

Posts:

Registered:

» » » What is wrong with this line of code?

Posted: Dec 21, 2011

No need to transcode, you lose quality. Just run something like qt-faststart on the mp4. - But if it's ok for you like this, fine.

Marking thread as solved.

Posts:

Registered:

» » » » » » » API status functions returning the whole object

Posted: Dec 21, 2011

If I call something like $f().getState() after the install script, with a splash image the function returns -1:
http://flowplayer.blacktrash.org/test/splashstate.html

Posts:

Registered:

» What is wrong with this line of code?

Posted: Dec 21, 2011

Your mp4 is not prepared for playback over the wire. Technically the so-called moov-atom containing crucial metadata is at the end of the file (no problem for desktop players which load the whole file), and therefore the entire movie buffers before starting to play.

Solution: google for "moov-atom qt-faststart" for programs to fix this, or choose the appropriate options in your transcoding program.

Posts:

Registered:

» » » » » » » ipod, ipad & html5 video tag with 2 instances of flowplayer

Posted: Dec 21, 2011

Yes, you can, as explained before. I've updated the demo accordingly. However! as you can see both clips start to play simultaneously. If that is not what you want, you run into a bug which I just discovered when autoPlay is set to false:
http://code.google.com/p/flowplayer-core/issues/detail?id=440

But I also found a workaround:


var ios = /ip(hone|ad|od)/i.test(navigator.userAgent);

$f("player1", "/path/to/flowplayer-3.2.7.swf", {
  plugins: {controls: null},
  clip: {
    url: "video.mp4",
    scaling: "fit",
    autoPlay: ios,
    autoBuffering: !ios,
    onStart: function () {
      if (ios) {
        this.pause();
      }
    }
  }
}).controls("controls1").ipad({controls: false});

See the updated demo at
http://flowplayer.blacktrash.org/test/ipad-multiple.html

Posts:

Registered:

» 200 stream not found with one file

Posted: Dec 21, 2011

Could be some restriction on your server. This one's 1 hour 51 min:

Flowplayer forum example

HTML setup for the player

<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.6.js"></script>

<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
	<img src="path/to/splash_image" />
</a>


JavaScript coding

Following script will install Flowplayer into our player container


<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.7.swf",{
clip: {
  url: 'http://www.blacktrash.org/media/ccc.flv',
  scaling: 'fit'
}
});
</script>


The rtmp plugin is used in conjunction with an rtmp server and the rtmp streaming protocol, and allows you to random seek in your movie - with http progressive download you can only seek to buffered portions of the movie.