Flowplayer-Talk

Summary: Talk page for Flowplayer.
Maintainer: ? (original author: Gianpaolo Terranova)
Users: (View? / Edit)

This space is for User-contributed commentary and notes. Please include your name and a date along with your comment.

Comments



Possible problem with php 7.2 : Troubleshooting?#create_function
nikos? December 05, 2019, at 12:22 AM



Might not work any more...
nikos? December 09, 2016, at 08:16 PM



Google doesn't see the videos in my site.
Do the following search in Google, for videos,
and you will get 2 results that are in HTML5 Video.
The flowplayer videos don't come up
(neither do the Youtube, Liveleak, etc, embeded ones):

   site:anarchy-domisi-ideon.awardspace.info/

or

  [(approve links)
  edit
  diff]

nikos? August 08, 2014, at 05:29 AM



The path is wrong in flowplayer.php file. Below worked for me:

Original:

SDV($FPObjBaseUrl, $ScriptUrl."/wiki/cookbook/flowplayer/");
SDV($FPJsUrl, $ScriptUrl."/wiki/cookbook/flowplayer/flashembed.min.js");
SDV($HelperJsUrl, $ScriptUrl."/wiki/cookbook/flowplayer/addloadevent.js");

Changed to:

SDV($FPObjBaseUrl, "./cookbook/flowplayer/");
SDV($FPJsUrl, "./cookbook/flowplayer/flashembed.min.js");
SDV($HelperJsUrl, "./cookbook/flowplayer/addloadevent.js");

Also changed in config.php file:

Original:

'include_once("cookbook/flowplayer.php");'

Changed to:

'include_once("$FarmD/cookbook/flowplayer.php");'



If you want the embedded media
to be playable on your local copy of pmwiki,
you could try a relative path.

Examples:

The following doesn't work, on my local copy,
but it works on my internet wiki...
(:flowplayer videoFile=/main/uploads/Main/some_video.flv :)

This works, both, on my local pmwiki
and on my internet wiki...
(:flowplayer videoFile=../../uploads/Main/some_video.flv :)

Adjust as needed...
nikos?


Talk page for the Flowplayer recipe (users?).