for some reason my loading url won't work...
i type sv_loadingurl "my url" into my server.cfg and it won't show up.
well im just actually trying to add music....
what kinda file type to i need to play music?
wav? mp3? or mid
Well, to embed a WAV sound file into a webpage you would need:
[code]
<object>
<param name="autostart" value="true">
<param name="src" value="yoursound.wav">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed src="yoursound.wav" controller="true" autoplay="true" autostart="True" type="audio/wav" />
</object>
[/code]
For MIDI Files:
[code]
<embed src="yourmusicfile.mid" autostart="true" loop="true"
width="2" height="0">
</embed>
[/code]
For MP3:
[code]
<embed src=”http://www.yourwebsite.com/audiofolder/youraudio.mp3″ loop=”true” autoplay=”false” width=”145″ height=”60″></embed>
[/code]
Sorry, you need to Log In to post a reply to this thread.