Media Player Module

SEÑOR

The Guy Everyone Hates
Messages
4,638
Reaction score
0
Points
0
I need a media player module for phpnuke for my radio? Where can i get one?
 

Alejandro

Staff
Staff member
Community Support
Messages
9,436
Reaction score
1
Points
38
Why don't you create your own one? Just use:
HTML:
<embed src="">
 

SEÑOR

The Guy Everyone Hates
Messages
4,638
Reaction score
0
Points
0
Ive just started and I have no idea what to do? I need the following code:

<OBJECT ID='WinMedia'
classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
CODEBASE='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
width=160 height=50 standby='Loading Microsoft Windows Media Player components...'
type='application/x-oleobject'>
<PARAM NAME='FileName' VALUE='http://70.31.237.61:2962'>
<PARAM NAME='AutoStart' Value='true'>
<PARAM NAME='ShowControls' Value='true'>
<Embed type='application/x-mplayer2'
pluginspage='http://www.microsoft.com/Windows/MediaPlayer/'
src='http://70.31.237.61:2962'
Name=MediaPlayer
AutoStart=0
Width=323
Height=50
autostart=1
ShowControls=1
</embed>
</OBJECT>


Also do you know how to set it so theres only 1 layout not a choice?
 

sunils

New Member
Messages
2,266
Reaction score
0
Points
0
Hi, i have already given a media player script to disturbedart
I am posting the script again

Code:
<OBJECT ID="MediaPlayer" WIDTH=320 HEIGHT=39 CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"  STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"><PARAM name="autoStart" value="True"><PARAM name="filename" value="enter your url address to the file along with its name and extension "><EMBED TYPE="application/x-mplayer2" SRC="enter your url address to the file along with its name and extension " NAME="MediaPlayer" WIDTH=320    HEIGHT=39></EMBED></OBJECT>


Note:-

In the filename param value and src value where i have specified
"enter your url address to the file along with its name and extension"

do as follows. if your song file name is test.mp3, and it is located in www.mysite.com/sampledir

then the value will be

http://www.mysite.com/sampledir/test.mp3

Hope this is usefull and solved your problem
 
Top