How do i play a midi file
-
I want a midi file to be played when the user loads the page I have created how do i achieve that? Thanks alot
-
I want a midi file to be played when the user loads the page I have created how do i achieve that? Thanks alot
You have 2 ways to achieve this one is convert this file into another format(wav/mp3...). second is download 3rd party midi player plugin and use it. Better way to approach is convertion is better. regards GV Ramana
-
I want a midi file to be played when the user loads the page I have created how do i achieve that? Thanks alot
Basically, to play audio on the web page, there are a couple of options that you may try: + Use the
bgsound
element to play as a background sound. + Use theembed
element to play as an embedded sound. + Use theobject
element to host a player, for example:<OBJECT classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" VIEWASTEXT>
< PARAM NAME="URL" VALUE="the path of the midi file goes here">
</OBJECT> -
Basically, to play audio on the web page, there are a couple of options that you may try: + Use the
bgsound
element to play as a background sound. + Use theembed
element to play as an embedded sound. + Use theobject
element to host a player, for example:<OBJECT classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" VIEWASTEXT>
< PARAM NAME="URL" VALUE="the path of the midi file goes here">
</OBJECT>Thanks for the helps. seems like a hef does work too bad bgsound only works with MS internet explorer