Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

web browser media player

Options
  • 06-06-2007 10:04am
    #1
    Registered Users Posts: 742 ✭✭✭


    Hi,
    i have a page that the media player works with IE

    <object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="Player" height="40">
    <param name="AutoStart" value="True"/>
    <param name="uiMode" value="mini"/>
    <param name="URL" value="track1.mp3"/>
    </object>

    however i need the page to be compatible with firefox also

    anyone know if i can use another way to embed media without installing a plugin for firefox ?

    Thanks
    William


Comments

  • Moderators, Science, Health & Environment Moderators Posts: 10,079 Mod ✭✭✭✭marco_polo


    Loco wrote:
    Hi,
    i have a page that the media player works with IE

    <object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="Player" height="40">
    <param name="AutoStart" value="True"/>
    <param name="uiMode" value="mini"/>
    <param name="URL" value="track1.mp3"/>
    </object>

    however i need the page to be compatible with firefox also

    anyone know if i can use another way to embed media without installing a plugin for firefox ?

    Thanks
    William

    Haven't used it before for this but I think it is the embed tag that you are looking for here. Something like this should work (in theory):

    <embed type="application/x-mplayer2" id="player"
    pluginspage="http://www.microsoft.com/Windows/MediaPlayer/&quot;
    name="Player"
    width="100"
    height="70"
    AutoStart="0">
    </embed>


Advertisement