Hi,
I looking for a way to include streaming content e.g. from wozwa server.
Is there any usable plugin for cpg1.5?
Any ideas?
Thanks
Holger
Can you please describe how you usually use/access content delivered by that server? Do you have a working (non-Coppermine) example?
Hi,
normally use a php site with database request and integrated JW Player to play..
SERVER.XX/Player.php?FILE=xxxx
### Code
<script type='text/javascript' src='/Scripts/swfobject.js'></script>
<div id="player">
<div id='mediaspace'>This text will be replaced</div>
</div>
<script type='text/javascript'>
var so = new SWFObject('/player/PLAYER','ply','480', '320','9','#ffffff');
so.addVariable('type','rtmp');
so.addVariable('streamer','rtmp://xxx.xxx.xxx.xxx');
so.addVariable('file','<? $File ?>');
so.write('mediaspace');
</script>
Maybe you can adjust that plugin to use your streaming server: http://forum.coppermine-gallery.net/index.php/topic,62704.0.html
thanks it work if you use same new file types and some little coding of the player config in codebase.php
For the benefit of others:
Quote from: Joachim Müller on September 28, 2008, 12:46:26 PM
Resolve your threads
If you have found an answer to your question, resolve your thread. Don't just post "I have found the answer", but tell others what you actually did to solve your issues. Posting a link to the page where you found the answer might help. Describing what you did might help as well. Finally, you can tag your answer as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.