|
Author |
Message |
mcook33sr
Member
Posts: 8
Registered: Nov 2008

|
Posted November 14th, 2008 08:02 PM IP  I am new to the site and wondered if the board can support a media player. I have a religious board and have had a lot of requests for gospel songs. Any help would be appreciated. Micael Cook
|
|
bunk

Member
Posts: 1340
Registered: Sep 2007

|
Posted November 14th, 2008 09:31 PM IP  Well, i'm not religious by any means, and have nothing against those that are, but to answer your question, yes, you can insert a media player with enough knowledge & effort  Have a nice day, Bunk
|
|
mcook33sr
Member
Posts: 8
Registered: Nov 2008

|
Posted November 14th, 2008 09:43 PM IP  Thanks for the help I have one on my board but I use my dsl to act as the host to play the different songs.There is a lot of problems when the amount of storage space is exceded.How can I bypass this or can I? Will the board allow or can it act as a host? Micael Cook
|
|
bunk

Member
Posts: 1340
Registered: Sep 2007

|
Posted November 14th, 2008 10:03 PM IP  You need to "host' your material at somewhere like: http://www.putfile.com/
Then it sounds as if you were able to insert your player ???
I have several tunes hosted at putfile, and was able to accomplish my goal, but i'm not exactly sure where you are headed.....
I accually wanted to do more, but got to a point that I was happy / satisfied with. Have a nice day, Bunk
|
|
mcook33sr
Member
Posts: 8
Registered: Nov 2008

|
Posted November 14th, 2008 10:09 PM IP  Thanks for the adress . What kind of player do you use. I like your avatar makes me think of AC\DC. Micael Cook
|
|
bunk

Member
Posts: 1340
Registered: Sep 2007

|
Posted November 14th, 2008 11:42 PM IP  I good dude here at support made the avatar for me a long time ago, he rarely comes by any more 
Here is the base code I used for my media player:
The Microsoft Windows Media Player
Options - ALL
The Temptations - My Girl
West Coast Gumbo - Celina
Theme Tune - Rainbow TV
________________________________________
To show current song (and other stream info) :-
Find line: <OBJECT id=music height=44 width=230 classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95>
Replace with: <OBJECT id=music height=70 width=230 classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95>
Find line: <param name="ShowStatusBar" value="0">
Replace with: <param name="ShowStatusBar" value="1">
Disabling the fast forward button :-
Find this line <param name="ShowPositionControls" value="-1"> and change it to <param name="ShowPositionControls" value="0">
Code for WMP:
<!-- Multi WM Player at www.rainbow.arch.scriptmania.com/scripts/music/ -->
<OBJECT ID="music" height=70 width=430 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=,1,52,701" standby="Loading Microsoft Windows Media Player components..."
<!-- Change to value=0 to hide status -->
<param name="ShowStatusBar" value="1">
<param name="AudioStream" value="-1">
<param name="AutoSize" value="0">
<param name="AutoStart" value="-1">
<param name="AnimationAtStart" value="-1">
<param name="AllowScan" value="-1">
<param name="AllowChangeDisplaySize" value="-1">
<param name="AutoRewind" value="-1">
<param name="Balance" value="0">
<param name="BaseURL" value>
<param name="BufferingTime" value="5">
<param name="CaptioningID" value>
<param name="ClickToPlay" value="-1">
<param name="CursorType" value="0">
<param name="CurrentPosition" value="-1">
<param name="CurrentMarker" value="0">
<param name="DefaultFrame" value>
<param name="DisplayBackColor" value="0">
<param name="DisplayForeColor" value="16777215">
<param name="DisplayMode" value="0">
<param name="DisplaySize" value="0">
<param name="Enabled" value="-1">
<param name="EnableContextMenu" value="-1">
<param name="EnablePositionControls" value="-1">
<param name="EnableFullScreenControls" value="0">
<param name="EnableTracker" value="-1">
<param name="Filename" value>
<param name="InvokeURLs" value="-1">
<param name="Language" value="-1">
<param name="Mute" value="0">
<param name="PlayCount" value="1">
<param name="PreviewMode" value="0">
<param name="Rate" value="1">
<param name="SAMILang" value>
<param name="SAMIStyle" value>
<param name="SAMIFileName" value>
<param name="SelectionStart" value="-1">
<param name="SelectionEnd" value="-1">
<param name="SendOpenStateChangeEvents" value="-1">
<param name="SendWarningEvents" value="-1">
<param name="SendErrorEvents" value="-1">
<param name="SendKeyboardEvents" value="0">
<param name="SendMouseClickEvents" value="0">
<param name="SendMouseMoveEvents" value="0">
<param name="SendPlayStateChangeEvents" value="-1">
<param name="ShowCaptioning" value="0">
<param name="ShowControls" value="-1">
<param name="ShowAudioControls" value="-1">
<param name="ShowDisplay" value="0">
<param name="ShowGotoBar" value="0">
<param name="ShowPositionControls" value="-1">
<param name="ShowTracker" value="-1">
<param name="TransparentAtStart" value="-1">
<param name="VideoBorderWidth" value="0">
<param name="VideoBorderColor" value="0">
<param name="VideoBorder3D" value="0">
<param name="Volume" value="0">
<param name="WindowlessVideo" value="0">
<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" SRC="http://myserver/mypath/myfile.asf" name="MediaPlayer" height=70 width=230>
</EMBED>
</OBJECT>
</div>
<p> <BR>
<INPUT id=song1 onclick=document.all.music.filename=document.all.song1.value; TYPE="RADIO" NAME="Music" VALUE="http://servername/path/to/media.file"> Song 1</p>
<p>
<INPUT id=song2 onclick=document.all.music.filename=document.all.song2.value; TYPE="RADIO" NAME="Music" VALUE="http://servername/path/to/media.file"> Song 2</p>
<p>
<INPUT id=song3 onclick=document.all.music.filename=document.all.song3.value; TYPE="RADIO" NAME="Music" VALUE="http://servername/path/to/media.file"> Song 3</p>
Then Sage put a lot of effert into helping me make it work with several of my own songs 
Have a nice day, Bunk
|
|
mcook33sr
Member
Posts: 8
Registered: Nov 2008

|
Posted November 15th, 2008 10:52 AM IP  Bunk I really appreciateyour help on this matter I used it and it works perfectly thanks. Micael Cook
|
|
bunk

Member
Posts: 1340
Registered: Sep 2007

|
Posted November 15th, 2008 01:16 PM IP  Glad to hear that worked out for you Have a nice day, Bunk
|
|
barhopper

Member
Posts: 677
Registered: Jun 2007

|
Posted November 15th, 2008 02:57 PM IP  I just installed a jukebox from
http://www.playlist.com/
It has a pop-out player that you can listen to all your music uninterupted.
You just have to turn the volume all the way down on your site.
Your members can add up to 200 songs on one playlist.
|
|
mod1
Unregistered
Posts:
Registered:
|
Posted November 16th, 2008 04:51 AM IP 
Quote: barhopper wrote:
I just installed a jukebox from
http://www.playlist.com/
It has a pop-out player that you can listen to all your music uninterupted.
You just have to turn the volume all the way down on your site.
Your members can add up to 200 songs on one playlist.
|
I use that often and it is great, but when the "owner" of the music ever removes the song you lose it.
Apart from that is is fab to use on a message board.
|
|
97_V6mustang
Member
Posts: 8
Registered: Nov 2008

|
Posted December 21st, 2008 05:01 PM IP  can you do it for me....
Post edited to remove log in details. Not wise to have username and password to admin CP posted in public.
(Edited by mod1)
(Edited by mod1)
|
|
97_V6mustang
Member
Posts: 8
Registered: Nov 2008

|
Posted December 21st, 2008 05:28 PM IP  i already did for my page....
|
|
mod1
Unregistered
Posts:
Registered:
|
Posted December 21st, 2008 07:21 PM IP 
Quote: 97_V6mustang wrote:
can you do it for me....
Post edited to remove log in details. Not wise to have username and password to admin CP posted in public.
(Edited by mod1)
|
Please do not post your log in details on the forum.
|
|
Thefilmwall
Member
Posts: 1
Registered: Apr 2009

 |
Posted April 20th, 2009 01:47 PM IP  I like VLC media Player because in this player of go feature .
you can See any types of movies of this player. The Film Wall is a place where you can watch online free moviesanytime.
|
|
barhopper

Member
Posts: 677
Registered: Jun 2007

|
Posted October 2nd, 2009 07:18 AM IP 
Quote: Thefilmwall wrote:
I like VLC media Player because in this player of go feature .
you can See any types of movies of this player.
|
Is this something you can add to your board for your members?
|
|
|
|