Embedding Media Player  Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    Embedding Media Player

    MADBIKER1960
    MADBIKER1960
    Forumember


    Male Posts : 97
    Reputation : 0
    Language : English
    Location : Toronto, Ontario. CANADA

    Solved Embedding Media Player

    Post by MADBIKER1960 December 21st 2010, 2:57 am

    Greetings;

    http://nfsworldcommunity.canadian-forum.com/

    I would like to embed a media player with Christmas Tunes in it for one of my threads.

    How do I go about doing this?

    And if you can reccomend a player that is compatible with the website that too would be appreciated.

    Thanks. Mr. Green

    MADBIKER1960


    Last edited by RoNo on December 22nd 2010, 12:16 am; edited 2 times in total (Reason for editing : Forgot to insert website address)
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Solved Re: Embedding Media Player

    Post by Sanket December 21st 2010, 6:03 am

    playlist.com
    MADBIKER1960
    MADBIKER1960
    Forumember


    Male Posts : 97
    Reputation : 0
    Language : English
    Location : Toronto, Ontario. CANADA

    Solved Re: Embedding Media Player

    Post by MADBIKER1960 December 21st 2010, 4:15 pm

    Sanket wrote:playlist.com

    No that is not quite what I had in mind, although it is a nice site.

    I am looking for a media player that I can embed on a web page much like this one:

    http://www.chfi.com/listen/

    I realize that it is a radio station, but it being played through Windows Media Player Plug In.

    Ant ideas on how that is done?

    Thanks. Mr. Green

    MADBIKER1960
    RoNo
    RoNo
    Active Poster


    Male Posts : 1270
    Reputation : 135
    Language : English
    Location : Laguna Beach, California

    Solved Re: Embedding Media Player

    Post by RoNo December 21st 2010, 11:37 pm

    For a Windows Media Player-style radio...
    Add this to a widget for the station you mentioned
    Code:
    <object type="application/x-mplayer2" width="250" height="50">
    <param name="src" value="http://mfile.akamai.com/80872/live/reflector:35901.asx?bkup=37182&prop=n" />
    <param name="name" value="RadioPlayer" />
    <param name="ShowPositionControls" value="0" />
    <param name="ShowTracker" value="0" />
    <param name="ShowAudioControls" value="1" />
    <param name="AutoStart" value="1" />
    <param name="ShowControls" value="1" />
    <param name="ShowStatusBar" value="1" />
    </object>


    Change the "src" value= for other stations...
    "Rockin' Christmas Radio" is good
    Code:
    <object type="application/x-mplayer2" width="250" height="50">
    <param name="src" value="http://livestream2.bigrradio.com/xmas-rock?MSWMExt=.asf" />
    <param name="name" value="RadioPlayer" />
    <param name="ShowPositionControls" value="0" />
    <param name="ShowTracker" value="0" />
    <param name="ShowAudioControls" value="1" />
    <param name="AutoStart" value="1" />
    <param name="ShowControls" value="1" />
    <param name="ShowStatusBar" value="1" />
    </object>

    Autoplay may be bothersome for visitors...
    You can create music player Html pages and
    add popup links for them or use a get cookie
    script to auto-popup a player once per day.
    Examples: Try the popup players on this index
    MADBIKER1960
    MADBIKER1960
    Forumember


    Male Posts : 97
    Reputation : 0
    Language : English
    Location : Toronto, Ontario. CANADA

    Solved Re: Embedding Media Player

    Post by MADBIKER1960 December 22nd 2010, 12:05 am

    @ RONO

    Awesome! That works perfectly, I now will have music for them when they visit.

    On the

    Thanks. Mr. Green

    MADBIKER1960
    RoNo
    RoNo
    Active Poster


    Male Posts : 1270
    Reputation : 135
    Language : English
    Location : Laguna Beach, California

    Solved Re: Embedding Media Player

    Post by RoNo December 22nd 2010, 12:13 am