Extension talk:MediawikiPlayer

From mediawiki.org

Internet Explorer 64 Bit[edit]

Just so people know, JWPlayer is not working on Internet Explorer 64 Bit. 32 Bit is fine, as are most other browsers. It's kinda like Adobe Flash, they haven't gotten around to 64 Bit browers yet.

MediawikiPayer not working[edit]

Can anyone assist. The player was working but suddenly stopped. I am not sure exactly when, so I cannot attribute the fault to anything that I have done. I am usuing the player on localhost. All I get is a blank space where the player should be. If I right click there is a message 'movie not loaded...' and 'About Adobe Flash Player'.

The player does appear to be attempting to load with the little wheel going round and round.

Cheers Ron Barker 20:39, 9 August 2011 (UTC)Reply

Thank you for the above advice. I am running Windows 64-bit version and explorer 9 32 bit so I am guessing that the player does not work on windows 64 bit.

Ron Barker 21:47, 13 August 2011 (UTC)Reply

FullScreen is Param not Variable[edit]

The script was generating the variable

s1.addVariable('allowfullscreen','true')

when it should have been generating

s1.addParam('allowfullscreen','true')

So to fix this I removed ‘allowfullscreen’ => ‘true’ from the $wgMWPlayerDefaultSettings array and hard coded it at the end

$code .= "s1.addParam('allowfullscreen','true');\n";

Thanks. Version 0.2.4 fixes this issue --Frantik 19:52, 29 July 2010 (UTC)Reply

Default image and any other setting known as "Flashvars"[edit]

I would like to suggest you add support for default images to your extension. All that was needed was a change to the default settings to include

$wgMWPlayerDefaultSettings = array(
              'width' => '400',
              'height' => '300',
              'allowfullscreen' => 'true',
              'backcolor' => 'eeeeee',
              'image' = ' ',
              );


and then a command such as

<mediaplayer width='500' height='300' image='http://www.yourdomain.com/preview.png'>http://www.yourdomain.com/mediafile.flv</mediaplayer>

can be used to set the preview image.

Thanks for the great extension.

You can already set the image and any other setting known as "Flashvars" listed on this page:list of flashvars You don't need to edit the extension file at all, just add the parameter to the tag. --Frantik 05:36, 28 November 2009 (UTC)Reply
for example, this is perfectly valid and displays an xspf playlist
<mediaplayer 
  backcolor="0xffffff" 
  frontcolor="0x333333" 
  lightcolor="0x4682B4" 
  displayheight="0" 
  width="400" 
  height="260" 
  repeat="list" 
  shuffle="false" 
  playlist="top"
  controlbar="bottom" 
  playlistsize="240">http://domain.com/playlist.xspf</mediaplayer>
--Frantik 05:47, 28 November 2009 (UTC)Reply

Use in Template[edit]

Is there any way to use <mediaplayer>link</mediaplayer> in a template? If I try so Mediawiki just prints it out and doesnt convert it.--Eski123 17:13, 30 November 2009 (UTC)Reply

MW parses tags in brackets before other parts of the text, ie before tempates are transcluded. I will look into ways around this for future versions. --Frantik 16:28, 3 December 2009 (UTC)Reply
if you're running 1.12+, look into the #tag magic word: Help:Magic words#Miscellaneous
Hi, and thanks for the great extension. Everything worked fine, until I've tried using the <mediaplayer> tag within a template — paragraph breaks <p></p> were showing up and messing the generated HTML code. It turns out the problem is due to MediaWiki itself. Patching the code as described here solves the problem.
For anybody looking to a solution, you can simply add this to your template page:
{{#tag:mediaplayer|{{{url}}}|width="320"}}
--MyRobotron (talk) 17:15, 4 August 2012 (UTC)Reply

Captions from a different server[edit]

Thank you so much for this extension : very useful !

However, I'me having trouble with captions : can't manage to have them appear on a video.

Did anybody succeeded doing this ?

--Dieudo 11:46, 10 December 2009 (UTC)Reply

Hi Dieudo, see this page for more information about reading files across domains. You most likely need to set up a crossdomain.xml file. --Frantik 10:58, 16 December 2009 (UTC)Reply
Thank you Frantik for the tip ;-)
However, I wonder how it could easely be set up, because for example for the first video on this page : http://fr.nvcwiki.com/index.php/Marshall_Rosenberg/bigpicture.tv I can manage to have the video but not subtitles eventhough they are here : http://fr.nvcwiki.com/images/Marshallrosenberg1.srt and I've set this file : http://fr.nvcwiki.com/images/crossdomain.xml !
I don't know at all what could have been done wrong :( --Dieudo 17:04, 16 December 2009 (UTC)Reply
I'm not quite sure.. if you notice the player has a small "CC" icon so it seems like it is trying to work. Perhaps try a file with only plain ascii characters? you may wish to ask for help on the jwplayer forums as well. --Frantik 00:25, 17 December 2009 (UTC)Reply
Thanks for the suggestion Frantik. Here it is : http://www.longtailvideo.com/support/forum/Plugins/21405/Can-t-have-captions-show-within-MediaWiki
--Dieudo 09:06, 17 December 2009 (UTC)Reply
Some progress here :-) : http://www.dieudo.fr/w/index.php/Marshall_Rosenberg/MediawikiPlayerHTML
It's not using the extension, but at least it works ! --Dieudo 20:29, 17 December 2009 (UTC)Reply
I see now.. it is because mediawiki doesn't recognize captions.file as a proper argument. :( i'll see what I can do --Frantik 10:44, 24 December 2009 (UTC)Reply

I finally succeeded in getting captions to work. As Frantik wrote, it appears to be a problem with MediaWiki -- it won't take any argument names that have a dot, underscore, or (I'm supposing) other special characters in them. So, what I did was to modify the code to check for any arguments beginning with captions and then add a . before the rest. In the wiki, I enter captionsfile="path to file" and it comes out captions.file="path to file".

The change was somewhere around line 145 in version 0.2.4 (I made a change earlier to keep MediaPlayer from overwriting the defaults if I had set them in the LocalSettings.php file, but I think that only took 2 lines). The change was to insert a one-line preg_replace statement.

 $name = preg_replace('/^captions(.*)$/', 'captions.${1}', $name);
 $newname = Xml::encodeJsVar($name);

I will admit that I know close to nothing about MediaWiki or extensions, so there may be a better way. As a programmer, I know this is a terrible way. An option to wgParser that didn't strip out the dot would probably be better. However, accessibility is such a passion of mine that I refused to put out even my first video without captions and so I spent several hours tracking this down and getting it to work. --Jdj25 20:09, 15 August 2010 (UTC)Reply

not a bad solution :) I had forgotten about this issue. --Frantik 11:23, 16 August 2010 (UTC)Reply
0.2.5 addresses this issue. You may use 00 for a dot, such as captions00file --Frantik 12:45, 16 August 2010 (UTC)Reply
I confirm it works for me too :-) Thank you both ! --Dieudo 17:46, 22 August 2010 (UTC)Reply

Preview images uploaded to the wiki[edit]

I want to use an image that is uploaded to my wiki as preview image in a video. Unfortunately the image= parameter doesn't do the Mediawiki magic to get the actual image from "File:preview.jpg" and therefore the player doesn't display a preview image. Ideally it would scale the image to the size of the player and use it as preview image.

In other words: I'd like to see this to work:

<mediaplayer image='File:Preview.jpg'>File:Mediafile.flv</mediaplayer>

Can you implement this, please? ;-) --Cboltz 11:34, 14 April 2010 (UTC)Reply

this feature is already implemented and will be in the next release.. :) --Frantik 08:48, 17 April 2010 (UTC)Reply

I've got MediawikiPlayer 0.2.4 (July 2010) and the image from uploaded file doesn't seem to be working as in the example code above. Is there a different syntax to use? Ryan 9:57, 10 August 2010

You have to upload a preview image separately, the extension doesn't generate thumbnails. --Frantik 09:01, 12 August 2010 (UTC)Reply

"image='File:image001.jpg'" is not working for me either. the preview image only shows up if i use the full path. 04:28, 19 April 2011 (UTC) --philip

'author' in $wgExtensionCredits[edit]

Hi Frantik, your declaration needs to be changed to look ok. Just change it from '<a href="http://yourdomain.com">yourname</a>' to '[http://yourdomain.com yourname]'. Cheers --kgh 19:42, 28 April 2010 (UTC)Reply

Displaying song info for MP3 playlist[edit]

I have JW Player 5.2 installed and Extension:MediawikiPlayer 0.2.4 on MW 1.16.0b2. I can feed an XSPF playlist to <mediaplayer>http://example.com/myplaylist.xspf</mediaplayer> and it works as expected, with track forward/backward buttons. But I would like to be able to show information about the track being played so that the user can see what it is they are listening to.

Ideally, I'd like to have a list of the songs in the playlist (maybe as a dropdown list?) that the user could click, in order to select and play a specific track. At a minimum, I'd like to get information displayed from the playlist (at least "title") in the player. The user can then skip forward or backward to the track they are looking for.

I have not been able to get this to work - am I missing something? I tried getting the Infobox plugin working by passing a flashvar to the player, e.g. <mp3player height="24" plugin="infobox-1">http://example.com/myplaylist.xspf</mp3player> but that does not generate the infobox as expected.

Any ideas how to get a selectable playlist to show in the player, or at least display the title of the track playing? Thanks for the great extension!

You should try something like <mediaplayer width="400" height="260" playlist="top" controlbar="bottom" playlistsize="240" > and it will display the playlist. Check out the JW Player's site for more info about flashvars. --Frantik 16:51, 31 July 2010 (UTC)Reply
Thanks, that works. I missed that when I read through the flashvars page. Any ideas for a skin that keeps the clean interface of the default JW player skin but with only one line of text per item in the playlist? I'm aware of the Modieus Slim skin, but it doesn't maintain the look of the default skin. --Cyboreal 02:36, 4 August 2010 (UTC)Reply
The "simple" skin uses 1 line playlists and keeps most of the look of the default skin. It's one of the best ones imo --Frantik 02:14, 6 August 2010 (UTC)Reply

Generating XSPF playlist from within MediaWiki[edit]

I am using MediaWiki as a multilingual content creation platform with a multimedia focus. Having played with the JW Player and this extension, I am optimistic that it could solve the goals of the project, which include:

  • Manage all multimedia content from within MediaWiki
  • Provide downloads of all multimedia content from within MW
  • Stream all multimedia content from within MW
  • Create & publish playlists (and/or podcasts) from within MW

The first three points are already taken care of using MW and JW Player with this extension. The fourth one is an idea that I'd like to suggest as either a feature to add to this extension or possibly the purpose of a new extension.

I have an XSPF playlist stored in a MW page as raw XML that I feed to the JW Player with "?action=raw" appended to the MW URL for the page, which sends only the XML text to the player. What I am wondering is: how hard would it be to make it so this extension can take a standard MW page with links to media content and render it as an XSPF playlist for JW Player? The MW page might look something like:

[[File:MySong.mp3|My Song]]
[[File:AnotherSong.mp3|Another Song]]
[[File:AnotherSong-Live.flv|Another Song (Live, Music Video)]]

but be rendered as an XSPF playlist, maybe through a "Special" page.

Or, taking it a step further, if "xspf" was registered as a hook the extension might render the XML playlist and the JW Player in one code block:

<xspf>
[[File:MySong.mp3|My Song]]
[[File:AnotherSong.mp3|Another Song]]
[[File:AnotherSong-Live.flv|Another Song (Live, Music Video)]]
</xspf>

Is this possible? Are there any projects like this out there? Would anyone else find this useful?

I can develop this feature if you need it for your project. I am familiar with creating XSPF playlists. You can contact me here --Frantik 16:46, 31 July 2010 (UTC)Reply
I sent you a message. This could be a very useful tool for MW users - I look forward to seeing what you think. --Cyboreal 20:13, 3 August 2010 (UTC)Reply


Hello, I also want to implement XSPF playlists in JW in my MW. Unfortuntely, even ?action=raw to the XML page does not allow me to play the videos saved in the image folder of MW. Could you please help me? Thank you! -- 95.116.47.114 17:42, 22 November 2010 (UTC)Reply

youtube[edit]

can i play youtube play list?--212.138.113.10 06:30, 3 August 2010 (UTC)Reply

I'm not sure if JW Player supports Youtube playlists.. you should ask on their site and then use the appropriate flashvars if possible. --Frantik 17:07, 3 August 2010 (UTC)Reply

Internationalisation[edit]

  • Before I ask for a bug-fix I wanted to say: This is a great extension.
  • Here the problem we are having: As we are using MW not in an English speaking MediaWiki environment there is a problem when implementing a movie. As of now the extension only accepts when you write:
<mediaplayer>File:UploadedMediafile.flv</mediaplayer>
  • and not
<mediaplayer>Datei:UploadedMediafile.flv</mediaplayer>

Seeking time (bug)[edit]

Hi! Thanks a lot for this extention! Bur there is a bug with PlayerPointer(?):

  • Situation: I click on it (looks like [00:00:30] - for example), after that listen to or watch for a few seconds, press pause ([00:00:47]), and then press play, - the recording begins play from [00:00:30], but doesn't from [00:00:47]. Is it possible to fix? 89.251.107.5 14:56, 12 November 2010 (UTC)Reply
I didn't write the PlayerPointer "addon" but i will take a look when i get a chance :) --Frantik 21:21, 12 November 2010 (UTC)Reply

There is also a problem in that the player must be playing in order for the PlayerPointer to work or the page must be reloaded first and then it will work.

Captions broken with JWPlayer 5.4[edit]

I was the one who got captions to work back in August 2010, which led to the 00 fix. In preparation for a new semester, I upgraded to the latest version of MediaPlayer 0.3.0 and the latest version of JWPlayer 5.4. I made the switch to use captions-2, the captions00file and the jwplayer.js instead of swfobject.js. Captions stopped working. Looking on the JWPlayer site, their example now has quotes around variable names when they contain special characters. So, instead of the HTML having captions.file:"path to file", it should be "captions.file":"path to file". If you put quotes around the variable name in the <mediaplayer> tag, it is stripped out. I was able to get it working by unintelligently adding quotes around all variable names on line 259 of version 0.3.0. This didn't seem to break things (things worked), but it would probably be better to add the quotes only if the special characters are in the name or if there was a way to specify the quotes on those variables that needed them. I thought I'd pass a fix along for others encountering this problem. --James 20:07, 5 January 2011 (UTC)Reply

$wgMWPlayerDir Configuration Variable seems broken in 0.3.0[edit]

Unfortunately the $wgMWPlayerDir-Variable is not taken into account in Version 0.3.0. As far as I know php the problem lies in line 71 which should read

if ($wgMWPlayerDir=="") $wgMWPlayerDir = $wgScriptPath  . '/extensions/MediawikiPlayer';

instead of

$wgMWPlayerDir = $wgScriptPath  . '/extensions/MediawikiPlayer';
You need to set $wgMWPlayerDir after you include the file.. this change in 0.3.0 is a security measure otherwise a malicious user could set wgMWPlayerDir to anything --Frantik 04:41, 19 February 2011 (UTC)Reply

MP3 song title / artist info[edit]

Is it possible to have the MP3 player also display song title and artist information? I do have the player working on our wiki site via a custom template and we would like to use it heavily to share our government meeting and interview podcasts. It would be great if the info we embed in the podcast MP3 file could be made visible. I didn't see an easy way to do this in the documentation here or on JW Player site. Thanks in advance for any feedback. --Bawheeler 17:34, 3 February 2011 (UTC)Reply

it depends on the skin.. some will display it in the playlist. or you can use javascript to retrieve the info from the player --Frantik 04:43, 19 February 2011 (UTC)Reply

How to create a XML playlist[edit]

Please explain!

Setting Up an mRSS Playlist from longtailvideo: http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/24/setting-up-an-mrss-playlist

Extension:RSS -- Error:

"

 <channel>
   <title>MRSS Playlist</title>
      <item>
          <title>Test1 FLV Video</title>
          <media:content url="http://wiki/video/test1.flv" />
          <description>Test1 FLV Video</description>
      </item>
     <item>
          <title>Test2 FLV Video</title>
          <media:content url="http://wiki/video/test2.flv" />
          <description>Test2 FLV Video</description>
   </item>

</channel> " is not in the list of allowed feeds. The allowed feeds are as follows: https://wikimediafoundation.org/news/feed/, https://wikimediafoundation.org/category/technology/feed/, https://wikimediafoundation.org/category/technology/mediawiki/feed/, https://discourse-mediawiki.wmflabs.org/c/ask-here.rss, https://codeclimate.com/github/wikimedia/mediawiki-extensions-CentralNotice/feed.atom, https://codeclimate.com/github/wikimedia/mediawiki-extensions-DonationInterface/feed.atom, https://codeclimate.com/github/wikimedia/wikimedia-fundraising-crm/feed.atom, https://codeclimate.com/github/wikimedia/wikimedia-fundraising-dash/feed.atom, https://codeclimate.com/github/wikimedia/wikimedia-fundraising-php-queue/feed.atom, https://codeclimate.com/github/wikimedia/wikimedia-fundraising-SmashPig/feed.atom and https://codeclimate.com/github/wikimedia/wikimedia-fundraising-tools/feed.atom.


But how to use a created playlist in MediaWiki?

<mediaplayer>http://wiki/video/playlist.xml</mediaplayer> show only the first video on the list!

MediaWikiPlayer doesn't start wiki-video on Internet Explorer 7.0.5730 - 'The media player is loading...'[edit]

On our 'corporate' Internet Explorer (7.0.05730) the MediawikiPlayer does not start. On FireFox and Safari there are no problems.

The player keeps showing 'The media player is loading...'. I'm using the following link on my page

<mediaplayer height="540" width="720">http://SERVER_NAME/images/HaMIS S29 Webcast.m4v</mediaplayer>

Any thoughts ?

If you use the switch <mediaplayer useSWF=true> within your tag, does this solve the problem?

I've just had success here with the same problem.

I think it has to do with what is presented here.

http://www.longtailvideo.com/support/jw-player/13/embedding-flash

What's frustrating about this bug is I don't think its the JW Player because the JW Player extension on the wordpress platform has no problems playing on IE 6,7,8 without using SWF=true. The problem with using SWF=true is then it makes incompatible with html5 based players like the iPad, iphone etc. Would love to see a fix for this !

Switching back to JW Player Version 5.4 directly solved this problem for me -- Venia (talk) 11:46, 4 July 2012 (UTC)Reply

Doesn't work if wrapped in div tags[edit]

Hi guys, the extension is great and works fine but if i try and centre the video by wrapping it in a div it just displays the message 'the media file is loading...' and nothing else, but if I centre it using a p tag it works fine? I've tried all different options and different browsers and looked through the documentation. I don't know if I'm missing something really obvious or if it's supposed to be like that? so I thought I'd just throw it out there! 212.183.128.76 01:28, 13 August 2011 (UTC)Reply

yt.swf[edit]

The files cant be find on the webpage linked in the installation-instructions. It would be much easier if you included the files in the Zip from the beginning.

yt.swf is/was a file included with JWPlayer. I can't distribute those files since they don't belong to me --Frantik 08:21, 20 October 2011 (UTC)Reply


Auto Play and Replay[edit]

is there way to make the video or audio play automatically on page load? In addition is there a skin that also has a replay button?

Wikimanz 15:57, 2 January 2012 (UTC)Reply

Opera crash?[edit]

Is this the little player that is included in Wikipedia articles where you can click to hear a song etc.? I've noticed it crashes the latest Opera 11.52 on Windows (and maybe older ones). Anyone know a workaround/fix, or even the cause? It starts playing fine, but then you can't stop or pause or anything, and in fact Opera totally stops responding and hangs. 86.182.222.189 14:44, 29 November 2011 (UTC)Reply

Can Someone give a tutorial on how to change skin for player and/or how to add addons?[edit]

Can Someone give a tutorial on how to change skin for player and/or how to add addons? I've tried reading over the info at http://www.longtailvideo.com but it hasn't worked for me. So if someone can, give us a good explanation on how to go about it.

Thank You! Wikimanz 10:16, 27 December 2011 (UTC)Reply

align to right site of the article[edit]

Thanks for this helpfull extension. It' works successfully on my site http://thwiki.org. But i miss a function, to place it on the right site of the article like the picture thumbnail. May you add this option in a further version ?--Starwhooper 10:50, 11 February 2012 (UTC)Reply

Opening local files and m3u[edit]

Hi there. Is this extension working also with local files?

I have set up a wiki on a local server and would like to start m3u-playlist via local links like

file://///SERVER/FOLDER/PLAYLIST.m3u

So far this extension only seems to work with file types like *.mp3.

Thanks al lot for any help --Brocchinia (talk) 12:15, 19 February 2012 (UTC)Reply

How to prevent black sreen on Initial Load of Jwplayer[edit]

I used this extension to load mp3 files on my website. However, when page is loading the jwplayer appears as a black screen until it fully loads and works fine. Is there a way to make the loading faster or hide the black screen. Perhaps a way to change the color to match the background of the page to make it indistinguishable? Wikimanz (talk) 02:57, 25 February 2012 (UTC)Reply


Shows only "The media player is loading" on IE8[edit]

I'm trying this extension from this morning to integrate it in mi wiki, works great itself, however i've found that it displays just a "The Media player is loading" on IE8.

No problems at all on Chrome (SRware Iron) and FF.

using latest JWplayer 5.9

I'd like to make it work even on IE8 thought...

WORKAROUND 1 (seems to work randomly, read below) it seems that IE8 prevent JS loading if it's inserted in p tag. So if you write in MediaWiki Editor:

text text text text text text text text text text text text text 
text text text text text text text text text text text text text 
<mediaplayer>file:video.mp4</mediaplayer>

Then MediaWiki generates this code:

<p>text text text text text text text text text text text text text 
text text text text text text text text text text text text text
<span id="MWplayer-1-wrapper">(player js stuff here</span>
</p>

So all what you have to do is prevent that MWplayer tags are inserted into p tags. For example, as a workaround you could insert a heading before <mediaplayer> tag:

text text text text text text text text text text text text text 
text text text text text text text text text text text text text
=== Video === 
<mediaplayer>file:video.mp4</mediaplayer>

WORK-AROUND 2: It seems that the workaround described above works randomly because Mediawiki sometimes put p tags around <mediaplayer> tag without apparent reason.

Now i'm using the plugin between h3 tags in this way:

===<mediaplayer>file:video.mp4</mediaplayer>===

This will result in a heading called "The media player is loading... // ". All what you need to change this sentence is write on line 183 of MediawikiPlayer.php whatever you want instead of that sentence. For example, i wrote "Video". However i don't know from where the 2 slashes comes from...

UPDATE: work even under *, it displays a dot of course, but it doesn't conflict in TOC creation if headings > 4.

Not the best solution, but the video will load on IE8 without any hassle thought. WORK-AROUND 3: Replacing span with div at line 183 of the MediaWikiPlayer.php (two times) seems to fix the problem.

Switching back to JW Player Version 5.4 directly solved this problem for me -- Venia (talk) 11:47, 4 July 2012 (UTC)Reply

MediawikiPlayer running with Semantic MediaWiki(SMW) and Semantic Forms(SF)[edit]

For a media collection I want to combine MediawikiPlayer(Version 0.3.0) with SMW(Version 1.7.0.2) and SF(Version 2.3.2) on MediaWiki(Version 1.17.0).

My template "MediawikiPlayer" is built like this:

...
 ===<mediaplayer width=800 height=600>http://myserver/FILES/Videos/{{{Filename}}}</mediaplayer>===
...

You can see that the filename realized with a SMW attribute, recognizable by the triple { } braces. Target is to setup the attribute filename by a Sematic Form (and of course many other media properties like height, width, ...).

My SF form is build like this:

 {{#forminput:form=New video}}
 ...
 | {{{field|Filename|mandatory}}}
 ...
 {{{end template}}}

My wikipage for showing the video is built like this:

 {{MediawikiPlayer
 |Filename=Testvideo.flv
 }}

With this wikitext snippet, the template "MediawikiPlayer" is called. The attribute Filename is in this case set to "Testvideo.flv".

Error: unfortunately the SMW attribute is not replaced while parsing/rendering by its value. The video will not bee found ...

After parsing/rendering to HTML the page code (on IE8) is like this:

 <script type='text/javascript' src="/mediawiki/extensions/MediawikiPlayer/jwplayer.js"></script>
 <script type='text/javascript'>
 // <![CDATA[
 jwplayer("MWPlayer-1").setup({flashplayer: "/mediawiki/extensions/MediawikiPlayer/player.swf", width: "800", height: "600",   
 allowfullscreen: "true", backcolor: "eeeeee", file: "http://myserver/FILES/Videos/{{{Filename}}}"});
 // ]]></script></span></h3>

You can see, that the attribute is not changed. So the player gives a black screen with an error message. I tried to move the rendering hook of MediawikiPlayer to another (let me say a 'later') point but this was not successfull. It is clear, that this is not an error of the MediawikiPlayer extension, but SMW/SF are well used extensions in many wikis, aren't they? Perhaps others got trouble with this combination, too. Any soulution ? Thanks in advance for any feedback, Markus D. ----217.234.117.109 20:48, 12 June 2012 (UTC)Reply


Solution found by SWM users forum of Wikimedia mailing list, look for the solution: I changed the "MediawikiPlayer" template like this:

 ==={{#tag:mediaplayer|http://myserver/FILES/Videos/{{{Filename}}}|width=800|height=600}}===

Thanks again Yaron


62.159.123.206 09:37, 18 June 2012 (UTC), Markus D.Reply

youtube - yt.swf doesn't exist in latest jwplayer[edit]

The installation instructions say I need "yt.swf (required for youtube support)"

I just downloaded the latest jwplayer - it doesn't contain yt.swf. Does that mean MediawikiPlayer won't support youtube? If yes, how can I fix youtube integration? --Cboltz (talk) 18:49, 12 July 2012 (UTC)Reply

JW Player is now 6[edit]

The JW FLV Media Player from www.longtailvideo.com is now v6 but MediawikiPlayer v0.3.0 requires JW Player 5 to function. --Robkam (talk) 10:31, 4 January 2013 (UTC)Reply

Does it work with JW Player version 6.2 also? Or where I get JW Player version 5.3?--80.149.179.4 12:29, 20 February 2013 (UTC)Reply

Example[edit]

Is there an example website for this extension? I want to try it, before I instal it. --80.149.179.4 10:11, 20 February 2013 (UTC)Reply

Concerning: Error loading player display[edit]

I am currently using MWP on a test wiki which is having problems installing on to the server. The prompt;

"Error loading player: 
No playable sources found" 

on a black box is the only indicator on the site (outside of Version) that states it is installed. I have included several addon's, the suggested JW FLV files and other additional variables, all from the extension page but none seem to work. I have also used various types of media; swf, avi, flv and none seemed to work either. I am thinking there is a missing variable. Also, is there a minimum file size limitation (i.e.-in KB,MB, etc.)

Using: Win8, Win7, WinXP, Kindle Tablet

The Question: What is a plausible solution for MWP-ELPNPSF error messages? --Habatchii (talk) 19:36, 13 May 2013 (UTC)Reply

Using the new JW-Player 6[edit]

When you download the new JW-Player 6 then you get 3 files:

+ jwplayer.flash.swf
+ jwplayer.html5.js
+ jwplayer.js

First rename jwplayer.flash.swf -> jwplayer.swf Then upload all three files in the required folder And it will work. Pay attention: If you use an uploaded file f.e.: File:xyz.mp3, then you have to use File and no other nomenclature in other languages (like the german Datei) --Antropositiv (talk) 14:07, 31 May 2013 (UTC)Reply

How to enable MediawikiPlayer on MobileView powered by MobileFrontend?[edit]

I tried MediawikiPlayer on my wiki site. It works great on destktop view, but fails when I toggle to mobile view. My final purpose is to let Android phones access the MediawikiPlayer extension.

I did a little search about the cause of the problem. It is perhaps because MobileFrontend extension disables javascripts as indicated in the following webpage. Thus, the jwplayer.js does not get loaded properly.

http://www.mediawiki.org/wiki/Extension_talk:MobileFrontend#Is_JavaScript_filtered.3F_25404

The developers of MobileFrontend points out a way to enable the loading of javascripts for specific modules.

http://www.mediawiki.org/wiki/ResourceLoader/Writing_a_MobileFrontend_Friendly_ResourceLoader_module#Making_your_modules_mobile_friendly

I tried their method, and add the following code snippet to MediaPlayer.php. But the video still didn't load properly.

$wgResourceModules[ 'ext.MediawikiPlayer.jwplayer' ] = array(
        'localBasePath' => $dir,
        'remoteExtPath' => 'MediawikiPlayer/jwplayer',
        'scripts'       => 'ext.MediawikiPlayer.jwplayer/jwplayer.js',
        'position'      => 'top',
        'dependencies'  => array(
                'jquery.cookie',
        ),
);
 
$wgResourceModules[ 'ext.MediawikiPlayer.jwplayer.mobile' ] = $wgResourceModules[ 'ext.MediawikiPlayer.jwplayer' ] + array(
        'targets' => 'mobile',
);

function efEnableMobileModules( $out, $mode ) {
        $out->addModules( 'ext.MediawikiPlayer.jwplayer.mobile' );
        return true;
}

$wgHooks['EnableMobileModules'][] = 'MediawikiPlayer::efEnableMobileModules';

Can you provide some help? I am not quite experienced on php programming.

MediawikiPlayer is NOT WORKING!![edit]

I've installed this extension successfully but when I tried to add a video using the following code on my page

<mediaplayer>File:ExampleVideo.flv</mediaplayer>

It's keep saying The media player is loading....
Please help!

"The media player is loading..." error solution[edit]

This solution was actually mentioned in one of the posts above, but wasn't obvious enough. The problem seems to be due to MediaWiki rendering the HTML output and applying two operations to the HTML code: whitespace and list processing and Tidy.

If you look at the source code, you'll notice a random <p> tag, which breaks the javascript calling the media player.

The solution I used, per the example on the page below, was to modify MediawikiPlayer.php, particularly in the "render" function, modify the return line; I also added a new processEncodedOutput function outside of the MediawikiPlayer class.

Doing this should rid your HTML output of the random <p> tag.

Source: http://jimbojw.com/wiki/index.php?title=Raw_HTML_Output_from_a_Parser_Extension

Tommyheyser (talk) 08:39, 18 July 2014 (UTC)Reply

Can you post your changes ? — Preceding unsigned comment added by 202.72.135.193 (talkcontribs)
I would like to see these changes myself. GethN7 (talk) 00:48, 11 October 2014 (UTC)Reply
A pretty elaborate description of the underlying issue, so which changes have to be done exactly? --[[kgh]] (talk) 21:34, 29 March 2016 (UTC)Reply

Where to put the jsplayer license key for JwPlayer v7[edit]

In the line in MediawikiPlayer.php change the following line to include your licence key. Please note this isn't an actually working key.

218c218
<                       $code .= "jwplayer($wgMWPlayerIDJS).setup({flashplayer: $playerUrl, key:'werw080980980293j42l3kjL2j8Kg=='";
---
>                       $code .= "jwplayer($wgMWPlayerIDJS).setup({flashplayer: $playerUrl";
302c302
< }
---
> }

Updated for latest?[edit]

anyone know how to update this player to latest wiki?