Play midi files using chrome

I use the built-in player to play midi files. He plays mozilla and explorer, how can I play midi files in chrome, is there an extension or plug-in with which I can play midi in chrome.

here is my code

<object id="MediaPlayer" width="300" height="300" classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <param name="Url" value="suite1.mid"> <param name="AutoSize" value="true"> <param name="AutoStart" value="true"> <param name="Balance" value="0"> <param name="DisplaySize" value="0"> <param name="Mute" value="false"> <param name="PlayCount" value="0"> <param name="Rate" value="1.0"> <param name="ShowAudioControls" value="true"> <param name="ShowControls" value="true"> <param name="ShowDisplay" value="true"> <param name="ShowStatusBar" value="true"> <param name="ShowTracker" value="true"> <param name="StretchToFit" value="false"> <param name="TransparentAtStart" value="false"> <param name="Volume" value="100"> <embed type="application/x-mplayer2" name="mediaplayer" pluginspage="http://www.microsoft.com/Windows/MediaPlayer" src="suite1.mid" Height="300" Width="300" AutoSize="1" AutoStart="1" Balance="0" DisplaySize="0" Mute="0" PlayCount="0" Rate="1.0" ShowAudioControls="1" ShowControls="1" ShowDisplay="1" ShowStatusBar="1" ShowTracker="1" StretchToFit="0" TransparentAtStart="0"> Volume="100" </embed> </object> 

He is working on mozilla and explorer, please offer me some solution which is urgent ....

+4
source share
1 answer

Windows Media Player will probably not work with Chrome and will not work for every user. Check out HTML5 (e.g. http://mudcu.be/midi-js/ , sources at https://github.com/mudcube/MIDI.js ) or Flash (e.g. http://code.google.com/p/ flash-midi-player / ). Instead, MIDI players.

0
source

All Articles