Go
Not registered? Sign up!

CMS Plugins for the players

Google Translate
126 posts | return to the Modules forum | get the rss feed for this thread

May. 06, 2007Niluge_KiWi

Hello,
I've made a small tutorial to explain how play flv movies with the module smartmedia, for the CMS Xoops.

You can find it here:
http://smartfactory.ca/modules/newbb/viewtopic.php?topic_id=981&forum=11&post_id=4528#forumpost4528

Thanks you for your player!

May. 07, 2007Emile

Hello everyone.

This player rocks. No doubt.
The only problem is that looks like Jeroen did not made it obvious to create a playlist on the fly by using addItem via AS2 instead of JS.

I am really getting mad, I can't find a way of how ot add items to the player via AS.

Anyone can please post a simple example of AS2 sintax for adding and removing items directly from inside the player?

Any help will be highly appreciated (...donation to Jeroen on it's way).

Grootjes!!

Emile

May. 08, 2007JeroenW

You should be able to get the feeder functions with:

mpl.feeder.additem();
mpl.feeder.removeItem();


So instead of the controller, you call the feeder inside the players. By the way, I'll move this post to another thread in a couple of days > not really on topic...

May. 10, 2007Jared

While I am playing an FLV video, at the bottom... beneath the scroll/navigation bar, are the words "undefined". How do I change these words? or get rid of that black bar/section?

May. 11, 2007Marc Laporte

Hi!

Please also see JeroFlashImageRotator and JeroFlashMediaPlayer for TikiWiki CMS/Groupware by http://www.Casainho.net

http://tikiwiki.org/tiki-view_forum_thread.php?forumId=3&comments_parentId=24462

Thanks!

M ;-)

May. 11, 2007Will

@Jared,

If you don't have "displayheight" set in your flashvars, set it to the height of your video. Then make your flvplayer "height" 20 more than the "displayheight".

May. 18, 2007JeroenW

@Marc Laporte: Thanks!

May. 21, 2007Vjeran Vlahovic

We just released an extension for eZ publish CMS (http://ez.no) for embedding fly and mp3 players.

Contribution can be downloaded from here:
http://ez.no/community/contribs/applications/ngflashvideo_flv_mp3_player_with_playlist

May. 21, 2007H. Peterseim

Hannes Peterseim (21.05.2007):

We just published 2 modules for the integration of the fabulous mp3 player into the redaxo content management system.

You can download these 2 modules (one as a single version, one as a jukebox version) under [url=http://http://www.stapis.de/service.html]http://www.stapis.de/service.htmlclick here[/url]. Please remind that the modules and the readme.txt are in german.

Module für die Integration des MP3 Players als Single- oder Jukeboxversion in das Redaxo Content Management System können unter [url=http://http://www.stapis.de/service.html]http://www.stapis.de/service.htmlclick here[/url] gedownloaded werden.

Sorry, i´ve doesn´t see the bar...

May. 21, 2007H. Peterseim

Last but not least, here is the redaxo module for the integration of the flv player.
You can find the module always on [url=http://www.stapis.de/service.html]http://www.stapis.de/service.html[/url]

Und hier nun noch das Modul für die Integration des FLV Players in das Redaxo CMS,
Zu downloaden unter [url=http://www.stapis.de/service.html]http://www.stapis.de/service.html[/url].

May. 28, 2007manicLA

Great player. Being used by a couple of public radio stations in the U.S. now. Have recommended it to quite a few. Would be great to find a plug-in of the media player for Plone. We could try to modify the ZMS version (I think) but if someone has something working in Plone already, please let me know.

Thanks, again.

May. 29, 2007Tivadar

PhpNuke Flash Player v0.1b

- Admin add, modify, remove
- Data in MySQL
- Player config in Language file

This version only modul view.

Download link:

http://php-nuke.hu/modules.php?name=Downloads&d_op=viewdownloaddetails&lid=75

May. 30, 2007Digitale Signatu

This is an incredible tool, continue to good work!

May. 30, 2007JeroenW

Thanks for the new extensions! Have updated the lists...

May. 31, 2007David Bender

Hello Jeroen,

we integrated your flash video player into a videogallery extension for the CMS typo3. In the Manual we added a part about licensing the player. I hope this fits for you...

The Extension can be found here: http://typo3.org/extensions/repository/view/bddb_flvvideogallery/0.0.2/

A first live example:
http://www.ghost-o-one.de/galerie/videos.html

bye,
David

Jun. 05, 2007JeroenW

I'm fine with that, thanks! I've added the extension to the list of plugins.

Jun. 16, 2007H. Komljenovic

Jeroen,
thank you for this great Flash video player.
We have released beta version of free FLVPlayer for DotNetNuke CMS. The module is free for download at http://www.considero.net/Products/DotNetNuke/Modules/DNN-FLVPlayer-Flash-Video-Player.aspx

Regards,

Hrvoje

Jun. 19, 2007JeroenW

Thanks! Added...

Jun. 20, 2007Fertje

Hi,
Here's a flv streaming solution with classic ASP

------------
'Streaming FLV files with Classic ASP
'20/06/2007 by Ferrie van Schaik (ferrie@xferzone.com)

Response.ContentType = "video/x-flv"

Dim valPos,valFile,objStream

valPos = Request("pos")
valFile = Server.Mappath(Request("file"))

If LCase(Right(valFile,Len(valFile)-InStrRev(valFile,"."))) = "flv" Then Response.End

Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile(valFile)
If valPos = "" Then valPos = 0
If valPos <> 0 Then Response.BinaryWrite objStream.Read(13)
objStream.Position = valPos
Response.BinaryWrite objStream.Read
objStream.Close
Set objStream = Nothing

--------------

Good luck.
Ferrie van Schaik,
Amsterdam, the Netherlands.

Jun. 21, 2007msgcrap

Hmm, would someone please make a plugin for e107. I really love this player but can't use it and there are no flash players for e107 :(

Jun. 21, 2007Alex Rabe

Hello Jeroen,

I dropped the plugin myFlash with the Image Rotartor, cause I integrate it into a new WordPress plugin called NextGEN Gallery. Would be great if you could update the link to :

http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/

Thanks again for your great tool !

Jun. 22, 2007azer

Is there a plug in for the xoops cms?

Jun. 24, 2007JeroenW

@Alex: changed!

@Fertje: Thanks! I'll post this as a download in my "extras" folder as well...

Jun. 24, 2007ralph_m

hi - is there a possibility (for a beginner) to integrate the JW FLV PLAYER 3.9 in joomla?

Jun. 25, 2007JeroenW

There are several Joomla modules already available. Please check the plugins list on the player pages.

Jun. 30, 2007Considero.net

DotNetNuke module is available at [url=http://www.considero.net/Products/DotNetNuke/Modules/Alive-Media-Player.aspx]http://www.considero.net/Products/DotNetNuke/Modules/Alive-Media-Player.aspx[/url]

Best Regards,

Hrvoje Komljenovic
[url=http://www.considero.net]www.considero.net[/url]

Jul. 02, 2007JeroenW

Added, thanks Hrvoje!

Jul. 04, 2007Considero.net

And the MP3 player module for DotNetNuke (DNN) is now available at [url=http://www.considero.net/Products/DotNetNuke/Modules/Alive-MP3-Player.aspx]http://www.considero.net/Products/DotNetNuke/Modules/Alive-MP3-Player.aspx[/url]

Cheers,

Hrvoje Komljenovic
[url=http://www.considero.net]www.considero.net[/url]

Jul. 08, 2007Patrick

Plone.. has anyone already made a plugin for Plone ? We are focusing on the image player first. Let me know.. and else we'll be starting next week.

Jul. 09, 2007Roland Hentschel

An alternative to SWFObjects:

Unobtrusive Flash Objects (UFO) v3.22
[ http://www.bobbyvandersluis.com/ufo/ ]

No idea, how to implement, either the one
or the other, just starting with it ...

Would really need some help, how to use
this kind of Flash-Embedding in Joomla !!!

( -: roland :- )

[eMail: roland.hentschel@t-online.de ]

Jul. 13, 2007Peder

Hi Jeroen,

I'm interested in buying your source code and adding a few features to it for my site. I'm wondering what environment you code in? I tried opening the source .fla file in MX 2004 on windows, but I get the classic "Wrong file format" error.

Ideally, I'd like to just work with your .as files, but I guess I need the .fla files for all the graphics, and also to see how you create an instance of your player, right?

Peder wink

Jul. 13, 2007andersen

@Peder
Jeroen Wijering is on holiday until the 23 of juli-

but it is no secret that JeroenW have coded the players in adobe flash8
i would imagine you could also use adobe CS3 (i have only tried flash8)
and yes you need both the .fla and .as

when i finally had to do a small modding that was impossible to achieve by any other means, i got a trial version of flash8, copied the full source folder in order to keep subfolder structure -
then i "create new project" and "add files" all the files (.fla and .as)
when prompted for a font select the Kroeger_563.ttf in the source root (next to the .fla)
make the changes and test, and then finally "export"

have you checked out the [url=http://home5.inet.tele.dk/nyboe/flash/mediaplayer/]demos[/url] for inspiration? maybe you dont really need to modify the player -
i personally try to avoid it, due to the frequent updates and bugfixes...

Jul. 15, 2007Paul Sawaya

Hey, you said on your main page to give you a heads up if we embed your MP3 player into something, and I created a facebook application that allows them to add it to their profile. You can check it out here: http://bu.facebook.com/apps/application.php?id=2343189770

I don't know if you want to link it or not, since I'm not quite sure if a facebook application truly qualifies as embedding, but I thought you might like to know about it.

Thanks for creating such a great player,
Paul

Jul. 15, 2007Christian

The available Typo3 extension of the video player is quiet old with very limited features. Will there be an update?

Thanks -- Christian

Jul. 16, 2007Julien

hello all. despite a great amount of hours searching for a proper Joomla! module on the internet, I'm stuck : so far, many plugs including "allvideos" works with your player, but none offers the list of option we can set up (thumbnail, watermark, customize colors, etc...) I've tried to embed html and scripts codes on my Joomla! site, none works. So anyone could just give a little clue on how to use Jeroen's flash player on a joomla! site ? and I'm not speaking about playing mp3 files... in fact I used the player in my html pages to broadcast videos uploaded to blip.tv via ftp (with thumbnail fixed adress). I could use wrapper to point at my html pages, but this looks a bit difficult to keep dynamic site at this point. So All worked fine for me until I decided to run Joomla!...and I'd really appreciate the help on this.
btw, thx a lot for the hard work, hope U had nice holidays wink
Ju

Jul. 16, 2007Will

@Julien,

You will have a much better chance of getting help on the Joomla forums. I once tried to help a user with Joomla. After i spent several days setting the whole thing up and figuring things out, she apparently gave up. So no more CMSs for me.

Jul. 17, 2007Harald

@Julien:

search the extensions.joomla.org for "jumi"
With this module/mambot you CAN insert html-pages into content. Or just turn off the wysiwyg-editor and copy the html-code into your content.

Jul. 19, 2007Julien

@ Will and Harald thx a lot for your answers... both. Joomla forum helped and so did Jumi. + I found that using JCE Mambot editor is also a great way to keep most values of Jeroen's Player using a WYSIWYG editor : fullscreen, watermark, colors and... thumbnails ! now all works perfect with Joomla! and no need of AllVideos Plug.

Jul. 23, 2007Johan Steenkamp

The excellent image rotator, MP3 audio, and Video player are all available in AssetNow NX CMS as widgets. This means the players can be added directly in content pages or in templates using <widget:flashplayer .../> syntax.

Jul. 26, 2007jovelstefan

Maybe you'd like to integrate my WP plugin into your CMS plugin list?

Jul. 30, 2007JeroenW

No problem, do you have a URL?

Jul. 30, 2007Paul van Roekel

I've used JW Image Rotator tot create two templates for Google's Picasa.
Demo's and downloads at www.paulvanroekel.nl/picasa/

Aug. 06, 2007Max Rozenoer

This is not CMS (is there another thread for plug-ins?), but I've written an ActionScript adapter (maybe more appropriately called an "extention"?) to the JW FLV player for the Adotube OfferRenderer, allowing to add an opt-in advertisement over the video. The demo and the source code for the adapter can be found [url=http://www.adotube.com/sandbox/demo/JWFLVPlugin]here[/url].

Aug. 08, 2007Alakhnor

I've two plugins for WordPress which use your script.

Post-Thumb Revisited: a thumbnail management plugin which adds a layer over Alex's wordTube and integrate it with Highslide js library.

ptAlbum : it is using Media player and Image rotator. It is sometihng between a media insertion and a gallery but it manages pictures, flickR, flv, mp3 and youtube. Still on alpha state though.

Thanks for your scripts, it's a great help to achieve nice features.

PS: I've seen the thing with talkr. Amazing!

Aug. 11, 2007Panitz Timo

Hallo,

i am from [url=http://www.itratos.de]www.itratos.de[/url] we have a "webshop plugin" with your flv player

See the demo on [url=http://xtc.itratos.de/index.php?cat=c1_test.html]xtcommerce Shop[/url]
left the VCON Box

Screenshot from the
[url=http://forum.itratos.de/products/vcon/xtc-shop.png]products video upload in xtcommerce[/url]
The Plugin ist ready for al shops

[url=http://www.xanario.de]xanario.de[/url] shop
oscommerce.de shop
xtcommerce.de shop


and mutch more.

You need help, watch the [url=http://forum.itratos.de/]itratos forum[/url]

by

Timo

Aug. 11, 2007Jacky Thailand

You can see plugin in website [url=http://www.kik2you.com]click here[/url]









Mate Thailand by FLV Flash [url=http://www.kik2you.com]click here[/url]

Aug. 19, 2007Marcin

I use this extenstion from Typo3 website: [url=http://typo3.org/extensions/repository/view/flvplayer/0.1.0/]http://typo3.org/extensions/repository/view/flvplayer/0.1.0/click here[/url]

Could you help me where can I find an FLA source jpgrotator.fla?
On this website there is only to find an imagerotator.fla and it's not working after exporting to swf with typo3 plugin :/

Can anyone help me?


Best regards
Marcin

Aug. 27, 2007JeroenW

Marcin, you can still download the jpgrotator.fla from the "history" list at the [url=http://www.jeroenwijering.com/?item=JW_Image_Rotator]Image Rotator page[/url].

Aug. 28, 2007PopScript.com

We ported the mp3 player as well as the Video player over to Xoops. (current version of xoops 2.0.17)

But that is not all.

We also added an upload feature so that users can upload a file from their hard drives and it will be added to the playlist and stream from their browser.

Please enjoy!

ScreenShots:

http://img169.imageshack.us/img169/6281/000000009ap1.jpg
http://img169.imageshack.us/img169/8172/000000010xp0.jpg

Download:
http://rapidshare.com/users/DPHWUU

Sep. 01, 2007PopScript.com

We put together a page for this player and all the hacks we can collect that are based on it here:

[url=http://miscripts.com/tools/archives/category/php-scripts/multi-media/page/5]click here[/url]

####################################
////////////////////////////////////
Also, J.W. We created a Video Intro for your Flash player (original one) and uploaded it to YouTube. You can use it on your website here if you wish. If you want the other flavors post back here and I will send them to you. (wmv,flv,and avi) format.
####################################

Sep. 04, 2007SoulSmasher

hey J.W, firstly, thanks for generating such a beautiful flash player for all internet users

i'm one of the admins of php fusion's Turkish support site

i have generated a php fusion plugin for mp3 player

[url=http://www.soulsmasher.net/flash-mp3-player-jw-for-php-fusion/]here[/url] is my plugin

[url=http://www.orphanedlandtr.com/forum/viewthread.php?forum_id=2&thread_id=1&pid=1]here[/url] is a live working sample

thanks wink

Sep. 09, 2007Marco Göbenich

Hi!

MgMedia2 for Joomla supports the JW Mediaplayerand much more with templates and especially supports the playlist feature of JW Mediaplayer.

See http://www.needful.de/mgmediabot-demo

Regards

Marco

Sep. 10, 2007website-designer

Very nice and useful! Thanks, guys!

Sep. 10, 2007JeroenW

@Marco Göbenich, @PopScript.com: Thanks! Added your links to my list of plugins at the mp3player/flvplayer/mediaplayer pages.

@SoulSmasher: Your website seems to be down. Is it the wrong URL? If you have the correct one, I can add your plugin to the list.

Thanks for all the work!

Sep. 10, 2007SoulSmasher

sadly there's an issue with dns adresses i think in my country

it opens like [url=http://anonymouse.org/cgi-bin/anon-www.cgi/http://www.soulsmasher.net/flash-mp3-player-jw-for-php-fusion/]this[/url], or like [url=http://www.jaredvann.com/nph-proxy.cgi/000000A/http/www.soulsmasher.net/flash-mp3-player-jw-for-php-fusion/]this[/url] over proxies

i'm sure it'll be okay in couple of days, there's no issue about link, you can add

(by the way, the "add reaction" button does not work on my opera browser, so that's why i'm writing from firefox)

thanks,
Sincerally;
Arda

Sep. 10, 2007JeroenW

OK, thanks, will have a look in a couple of days. And I'll see what goes wrong with Opera...

Sep. 10, 2007SoulSmasher

thank you, too. let me know if it goes right or wrong about link in couple of days wink

Sep. 12, 2007printer parts

Very nice and useful! Thanks, guys!

Sep. 12, 2007Malbulja

This great script is what's powering the MP3-CMS, very cool.

[url=http://www.nealosis.com/mp3collector/Forms/Default.aspx]http://www.nealosis.com/mp3collector/Forms/Default.aspx[/url]
[url=http://sourceforge.net/projects/mp3-cms/]http://sourceforge.net/projects/mp3-cms/[/url]

Sep. 13, 2007Murali

where can i find AllVideo Plugin manual

Sep. 13, 2007Nicolay

We have implemented a "PHP Server Faces" component for our commercial ECMS - Powerslave.

Examples:
<f:mediaPlayer src="$flv" />
<f:mediaPlayer src="$flv" image="$preview" />
<f:mediaPlayer src="$flv" fullDisplay="true" autoStart="true" />
<f:mediaPlayer src="$mp3file" />

Sep. 16, 2007Ujiki.oO

:) I was making a INSTALLER for XOOPS which can uses
the Lightbox with JPEG(JPG)/GIF/PNG and FLV.

#) The newest my INSTALLER of XOOPS can display FLV with Lightbox "Greybox". This XOOPS can control a couple of Lightbox serieses.

grin If you like it. You can get the XOOPS installer which
can control Multi Language by UTF-8 for PHP4/PHP5 and
for MySQL-4 and MySQL-5.

wink Every modules which can input XOOPS BB codes, can
display Lightbox for FLV/JPG/GIF/PNG.

FAQ module: [url=http://www.fs4y.com/modules/xoopsfaq/?language=en]http://www.fs4y.com/modules/xoopsfaq/[/url]
NEWS module: [url=http://www.fs4y.com/modules/news/?language=en]http://www.fs4y.com/modules/news/[/url]
ZenCart: [url=http://www.fs4y.com/modules/zox/index.php?main_page=product_free_shipping_info&cPath=1&products_id=1&language=en]http://www.fs4y.com/modules/zox/[/url]
WordPress: [url=http://www.fs4y.com/modules/wordpress/?language=en]http://www.fs4y.com/modules/wordpress/[/url]
Forum: [url=http://www.fs4y.com/modules/xhnewbb/viewtopic.php?topic_id=14&language=en]http://www.fs4y.com/modules/xhnewbb/viewtopic.php?topic_id=14[/url]

Sep. 16, 2007Ujiki.oO

New INSTALL for MultiLanguage XOOPS has a special admin menu.
You may be able to understand a new specification for
using TWIN lightbox for FLV, jpg/png/gif.

[url=http://www.fs4y.com/modules/pukiwiki1/92.html?language=en]http://www.fs4y.com/modules/pukiwiki1/92.html[/url]

Sep. 18, 2007Arthur

I've been working on a number of modules which are useful for this flash player on <a href="http://drupal.org">Drupal</a> sites.

<a href="http://drupal.org/project/trackit">Trackit</a> uses the callback functionality to track some aspects of usage

<a href="http://drupal.org/project/xspf_playlist">XSPF Playlist</a> is a xspf play list generator which the flash player can use

<a href="http://drupal.org/project/media_mover">Media Mover</a> is a suite of modules which can convert content to FLV and then can be integrated with XSPF Playlist

<a href="http://drupal.org/project/swfobject_api">SWF Object API</a> makes it easy to add flash objects with the swf library.

You can read about what I'm doing at <a href="http://24b6.net">24b6.net</a>

Sep. 20, 2007JeroenW

Cool, thanks for sharing guys!

Sep. 21, 2007aSeptik

Hi All!

I have made a plugin for [url=http://e107.org]e107[/url] CMS system! i have called it Multimedia Flash Player.

You can download it and try here: http://ask.altervista.org or here: [url=http://plugins.e107.org/e107_plugins/psilo/psilo.php?artifact.200]plugins.e107.org[/url]!

tnx and good job! ;D

Sep. 21, 2007SoulSmasher

hey jw,
i checked over so many countries over networs, and my site opens well now

can u please re-check ? wink

[url=http://www.soulsmasher.net/flash-mp3-player-jw-for-php-fusion/]here[/url] is the plugin, [url=http://www.orphanedlandtr.com/forum/viewthread.php?forum_id=2&thread_id=1&pid=1]here[/url] is the live working example?

thanks wink

Sep. 21, 2007Mitch Sed

Joomla Module by Xi of JW Mp3 Player
In IE7 player does not work
Thank you for this mod really works great in IE6 and all firefox versions, showing a playlist of a podcast as well as playing them.
The Rss feed I used is a feedburner RSS.
But in IE7 the player totally cannot read or play any of the podcast list of songs, it just says undefined.
However the Jw's original mp3 player works fine in IE7.
Thank you again wink .
mitchpc at gmail dot com
P.s. Please go to my podcast page and test any of them in the right hand menu in IE7

Sep. 22, 2007Mitch Sed

I found the solution for IE7 problem:
just put this php file in your joomla root and refer to it in the Joomla Mp3 module
<?php

$dataURL = "http://feeds.feedburner.com/ForgottenMelodies";

//note that this will not follow redirects
readfile($dataURL);

?>

Sep. 24, 2007JeroenW

@SoulSmasher and @aSeptik: Thanks! Added the plugins...

Sep. 24, 2007SoulSmasher

thank you, too for creating and keeping on improving the best flash based mp3 player i've ever seen wink

Sep. 25, 2007Mitch Sed

Directory option in mod_flashmp3player for Joomla by Xi
In the mod there is a single file, Directory and custom playlist option. The single file and custom playlist works ok, but the Directory option cannot create a playlist of the mp3 files there, i have tried to put all files in a directory in the root itself even, but all it shows in playlist is below code and it does not play any at all. (folder chmod 777)
mod_flashmp3player/folderlist.php?fileext=.mp3 directory= [the absoluteurl of directory]

Oct. 30, 2007Tadej Novak

I'm making complete add-on for PHP-Fusion (administration included). First public release is expecting in several days.

URL:
http://fuzija.awardspace.com

Oct. 31, 2007www.kik2you.com

www.kik2you.com/showpic.asp?id=praw01


intrend

Nov. 06, 2007Bernard Paques

YACS, like other content management systems, integrates flvplayer to ease the publication of Flash videos.

http://www.yetanothercommunitysystem.com/

Actually, the player has been fully integrated into yacs, meaning a simple installation or upgrade is all you need to have flvplayer up and running.

Attach a .flv file to any article, then add the code [flash=id, width, height] to invoke the streaming player.

Many thanks for this nice piece of software.

Nov. 14, 2007feha

I'm working on my new advanced File Manager php application.
It it has a automatic by extension mp3 and flv auto JW player embeding.

You will be able to download it at [url=http://www.vision.to/]vision.to[/url] mid of december this year.
Will be licensed under the same terms as JW player.
Free for non-commercial use. (CC-license).

some screen shots here:
[url=http://www.vision.to/FM/]click here[/url]
I'm sure you will like it :-)
contact feha [at] vision.to

Dec. 14, 2007Andy Brook

Heres a User Macro for Confluence

<embed src="http://server/jwplayer/mediaplayer.swf" allowfullscreen="true" width='$param1' height='$param2' allowscriptaccess="always" BGCOLOR="#ffffff" flashvars='&file=$param0' >
</embed>

Use the following in a confluence page:
{flvplayer:server/path/file.flv|800|600}

I havent yet figured out how to make the black borders dissapear, bgcolor doesnt appear to do the trick..

Dec. 31, 2007AJ

I have already transplanted sNewsCms so.

The friend, who has interest can see to play to show!

http://snewscms.cn/web-design/jw-media-player-313-for-snews/

http://snewscms.cn/ sNews Chinese Community

Jan. 01, 2008WT

Anyone working on a postnuke module?

Jan. 05, 2008Daniele Conca

I will release a postnuke 0.8 module in the next days, check
http://noc.postnuke.com/projects/crpvideo/
in the file section

Jan. 07, 2008JeroenW

Thanks for the plugins guys, they have been added!

@Daniele Conca: please let us know when things are done!

Jan. 08, 2008Daniele Conca

First release (0.1.2) is available at http://noc.postnuke.com/frs/?group_id=483

thanks, JW

Jan. 10, 2008Georg

Hi,
I am writing a new plugin using your great player and got a question/feature request: Is it possible to add a trailer-file to a video? The trailer would be played before the real film starts?
Any ideas?
Thanks
Georg

Jan. 14, 2008Tarek

An excellent gallery plugin for the very popular e107 CMS, check it out ...

http://cerebralsynergy.com/download.php?view.98

Jan. 23, 2008Sam

Here's a link to a DokuWiki plug-in I put together last year...

http://wiki.splitbrain.org/plugin:flashplayer

Jan. 24, 2008TYPO3-PLugin

Hi,

I will release a new plugin for the CMS TYPO3 which will allow to show videos inside a content element which will be very cool.
You cand find every information here http://www.rggooglemap.com/en/dev/rgmediaimages.html

thanks for you work and for presenting my work

georg

Feb. 05, 2008JeroenW

Thanks guys!

Feb. 06, 20085pieces.com

Expression Engine Plugin V3 (by John Henry Donovan)
http://www.5pieces.com/blog/flv-player-plugin-v3/

Updated plugin and url

Feb. 12, 2008osman

I'm working on my new advanced File Manager php application.
It it has a automatic by extension mp3 and flv auto JW player embeding.

You will be able to download it at vision.to mid of december this year.
Will be licensed under the same terms as JW player.
Free for non-commercial use. (CC-license).
[url=http://www.kitlen.com/]sohbet[/url]
[url=http://www.kitlen.com/]Chat[/url]

Feb. 16, 2008arthur

I just wanted to report out on this:

http://drupal.org/project/flvmediaplayer

This is a major integration with drupal. It supports embedding, xspf_playlists, recommended content generated by drupal's views. It also gives the admin an interface to set parameters like logo, colors, playlist behavior, etc.

You can see it in action here:

http://mediamover.24b6.net/

Feb. 20, 2008JeroenW

Thanks guys, added!

Feb. 29, 2008Matt

FLV Media Player for for BlogEngine.NET
http://www.betaparticle.com/post.aspx?id=8dc7e07c-8246-4132-9f0a-1fe2f296fef1

Apr. 11, 2008Jeff Coughlin

Just added a plugin for FarCry (http://www.farcrycms.org/), an enterprise-level open source framework and CMS written in ColdFusion.

FarCry CMS FLV Player -- http://farcry-jcfarcryflvplayer.googlecode.com

Apr. 11, 2008JeroenW

Has been added!

Apr. 12, 2008sLyHarryadir

invision power board plugin? :(

May. 17, 2008acrylian

flv player is now included as a standard plugin in the latest 1.1.6 release of Zenphoto (actually it was included before but the plugin system is brand new):
http://www.zenphoto.org

Acrylian (Zenphoto development team)

May. 25, 2008Fritz

Plugin for Joomla 1.5

Since the old AllVideos plugin for Joomla 1.0 wasn't updated for a long time and is currently not available for Joomla 1.5, I created a fork af that plugin, named AllVideos Reloaded. This one supports native Joomla 1.5 featuring the latest JW Media Player.

URLs:
Project page: http://joomlacode.org/gf/project/allvideos15/
Demo page: http://allvideos.fritz-elfert.de/
Joomla Extension Directory entry: http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,3955/Itemid,35/

Would be nice, if that could be added to the listing

Cheers
-Fritz

Jun. 02, 2008Josh Chesarek

I have been working on a Wordpress Plugin that utilizes JW FLV and Thickbox

Simple Flash Video Plugin for Wordpress 2.5.1

Project Page: http://www.simplethoughtproductions.com/category/simple-flash-video/


-Josh Chesarek
http://www.simplethoughtproductions.com

Jun. 03, 2008SaltwaterC

Hi Jeroen,

Thank you for this wicked FLV player wink . I recently included it within my WordPress plug-in, XHTML Video Embed, which mostly is about embedding various flash videos by using standard XHTML code. Since the latest stable release, your player delivers the embedded FLV files by my plug-in.

http://saltwaterc.net/xhtml-video-embed

Best regards,
SaltwaterC

Jun. 06, 2008Viper007Bond

My very popular WordPress plugin uses this most excellent SWF for FLV playback:

http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/

It's in need of a yet another recode (that'll be #6) to further increase it's features, but it's still quite capable.

Keep up the great work!

Jun. 18, 2008SaltwaterC

If you're till watching this page ... my plug-in used your player for several releases, but since your license is too restrictive for a GPLed plugin which is used by a GPLed blog engine, I replaced it. It's a great piece of work, but unfortunately I finally get the licensing issues when using certain solutions.

Best regards,
SaltwaterC

Jun. 22, 2008Michael

viper. if you want people to view your page, you might want to cut down on the size. it just crashes my browser

Jun. 24, 2008RottNKorpse

RottNAudio is a FREE Nuke-Evolution based module which adds a Flash based MP3 Player to your site in 4 different ways, as a Module so people can just go to the link and play the MP3s, as a Block so the player is always in clear view to plays the MP3s on any page, a Pop-Up player to play the music without interuption while a user browses your site and a mp3 BBCode to allow users to post & play songs in your forums via the RottNAudio player.

The player is of course JW's FLV Player but for this purpose on the audio part is used...well and the display a little for album covers.

Module Demo:
http://rottnresources.com/studio/modules.php?name=RottNAudio

Project Details:
http://rottnresources.com/studio/modules.php?name=RNK_Projects&file=projects/RottNAudio/index

Download Link: MUST be a registered user, but thats free.
http://rottnresources.com/studio/modules.php?name=Downloads&op=getit&lid=9

Jun. 27, 2008JeroenW

Thanks! Have added them all to the Wiki:

http://code.longtailvideo.com/trac/wiki/Plugins3

Jun. 30, 2008Ivo

I had posted this in the general chat-category, but this thread seems more appropiate;

I've made a kind of widget that allows visitors to comment on media played in the JW-flashplayer based on the timeline the player is at. It's a new way of commenting on movies or audio (ok.. i've never seen it before).
You can use the widget hosted from my server, or download the source and install it yourself.
It's still an early alpha-release, but if you'd like you can download it for free (it's GPL-licenced)

More information is available on http://www.tliner.com

Jun. 30, 2008Josh Chesarek

That is very cool Ivo! Adobe has this feature but calls it clip notes but requires you to use a PDF and windows media player.

I am highly interested in this!

Thanks!

Jul. 02, 2008Ivo

Thanks Josh!

I updated the timliner-widget-generator; you can now customize the look&feel of the player (a bit like the wizard on this site). Check it out at http://www.tliner.com/create.php

Jul. 09, 2008SoulSmasher

i've made a customizable & localized FLV bbcode plugin For PHP Fusion (v7), i'm inside PHP Fusion Crew, and this hopefully will be an official addon wink

here's the url:
http://www.soulsmasher.net/php-fusion-flv-media-player-bbcode/
samples and download links are also included inside

i'll also update current mp3 player to v7, also

Thanks, best Regards
Arda A.k.a SoulSmasher

Jul. 13, 2008George

For TYPO3
=========

Using the 4.0 player and license:
http://typo3.org/extensions/repository/view/media_center/0.1.0/

Using 3.x player and licence:
http://typo3.org/extensions/repository/view/bddb_flvvideogallery/0.5.0/
This one you already have listed, but the link is to the current version.

George/

Jul. 15, 2008Emiliano Bruni

I'm happy to annouce that MTVideoEmbedding

http://www.ebruni.it/en/software/os/mtos/videoembedding/index.htm

a plugin for Movable Type OS, now have support for JW FLV Media Player.

Bye

Jul. 20, 2008Patrick

TYPO3 Update of Media Center Extension:

use the following link to always get the recent version of the Media Center extension:

http://typo3.org/extensions/repository/view/media_center

Patrick

Jul. 28, 2008Tivadar

PhpNuke Flash Player v0.2

Download: www.darhmedia.hu/downloads/p13_sectionid/3/p13_fileid/8

Preview: www.tivi.php-nuke.hu/modules.php?name=Flash_Player

Jul. 30, 2008JeroenW

@SoulSmasher: A blank page is popping up. Is your site down?

@Ivo: Very cool indeed. How are you in terms of actionscripting? This could be converted into a very nice plugin! I'd be happy to give you an introduction and some hints: mail [at] jeroenwijering [dot] com

Aug. 01, 2008Daniele Conca


I will release a postnuke 0.8 module in the next days, check
http://noc.postnuke.com/projects/crpvideo/
in the file section


postnuke has changed his name in Zikula, and now crpVideo is available on
http://code.zikula.org/crpvideo

daniele

Aug. 09, 2008Eden

Hello,
This player is just great, ive added it to my Joomla extension denVideo to embed .flv and .mp3,
please take a look at:

http://3den.org/jootube/

Aug. 11, 2008Tivadar

PhpNuke Flash Player v0.3
JW FLV MP versions: 3.16 (player) & 3.6 (preview)


Download: www.darhmedia.hu/downloads/p13_sectionid/3/p13_fileid/8

Preview: www.tivi.php-nuke.hu/modules.php?name=Flash_Player

Aug. 12, 2008Soulmasher

@JeroenW -sorry for the late reply, i was at the vacation wink
the url should work now, can you please re-check again?
http://www.soulsmasher.net/php-fusion-flv-media-player-bbcode/
if doesn't work, try opening url from a proxy like www.ktunnel.com etc, hosting sometimes may issue from DNS
i also have a properly working demo
http://soulsmasher.bplaced.net/forum/viewthread.php?thread_id=1

thanks wink

Aug. 19, 2008Steven Costello

I found this one its for joomla it was created by youjoomla.

http://joomla1.0.youjoomla.info/newsline2/index.php?option=com_content&task=view&id=41&Itemid=55

Aug. 20, 2008Ken Bolton

Found this one for django.

http://www.pyjax.net/blog/1/2007/09/28/django-template-tag-integrating-flash-based-flv-pl/

Sep. 16, 2008Marco Goebenich

Hi!

I updated mgmediabot for Joomla 1.0.x and 1.5.x to support the 4.x player, http://www.needful.de/mgmediabot-demo/

Regards

Marco

Sep. 23, 2008Roman Fordinal

JW Media Player is now a part of Cyclone3 XUL/Perl Framework - http://www.cyclone3.org
repository part - http://svn.cyclone3.org/trunk/frame/_dsgn/JW_Media_Player.xhtml.tpl.d/

---
Cyclone3 dev team

Oct. 12, 2008antony

ambition

Oct. 12, 2008antony

[b][/b]

Oct. 13, 2008André

The papaya CMS also includes the JW Media Player.

Until now, only a german version of the website is available (while the CMS is available in englisch and german).

www.papaya-cms.com

An englisch version of the website is expected to arrive by the end of 2008....

Best regards,
André

Oct. 13, 2008pete

I would like a module for elgg CMS which is like facebook.
The elgg site www.elgg.org
Please can anybody help me?

Sep. 29, 2009nilton

Here there is a example of use silverlight wmv player

http://television.nilton.org

Add a reaction

You can also return to the category or try this search for related threads.


 

Search the Forums

Go

Support

Support Here are some helpful links to learn more about the JW Player™:

Monetize Your Video

Monetize Your Video Earn money with ads from LongTail's AdSolution. Watch our demos and sign up now!

Why Buy a License?

Why Buy a License? If you don’t buy a commercial license, you cannot use a JW Player™ on (i) a site that has ads; (ii) a corporate site; or a (iii) CMS. Our licenses are very inexpensive, so what are you waiting for? Buy a license today.