This page gives an overview of adding audio to web sites. Our site also contains articles on ...
Until browser developers have agreed standards for HTML 5 audio tags here are our 2 recommendations for adding audio to your site.
In many ways linking is best because it leaves the end-users system and browser to decide on what to do with it. Depending on the end-user's browser's "file helper" settings, browser version, installed software and installed plug-ins the file may ...
A simple link to an audio file might look like this ...
Many people use iTunes to convert uncompressed CD quality audio into MP3 files but almost all audio editing software will allow you to export to MP3. Programs include ...
iTunes MP3 encoder settings.
When creating MP3 file you can experiment with the following settings ...
Experiment but here are a few suggestions ...
Flash has evolved into serious development platform for programmers and non-programmers, and contains functions for the control and playback of audio and video files which may be either embedded in a Flash movie or linked to it. If you want to create your own bespoke player "console", perhaps with a playlist, you will need to be familiar with ActionScript.
WARNING: This method is not recommended by either us or w3.org
An alternative to linking is to add some code that will attempt to control the way a file will play and with what controls. Using the <embed> or <object> tag will normally result in the end-user browser using the default plug-in (typically QuickTime, Windows Media or Real Audio) to play the file with or without the default plug-in playback control panel.
IMPORTANT: Embedding does not mean the audio file is embedded in the page, IT IS STILL LINKED!
You can insert the following code (change the file name of course!) in the <head> tag of a page to make an audio file play automatically and with NO visible controls ...
<embed src="mysoundfilesname.mp3" autostart="TRUE" hidden="TRUE"></embed>
NOTE: The hidden parameter works erratically in Netscape.
You can insert the following code (change the file name of course!) anywhere on a page to make an audio file play with visible controllers ...
<embed src="mysoundfilesname.mp3" height="40" width="144" controls="CONSOLE" autostart="FALSE" loop="FALSE"></embed>
It looks like this >>>>
Listen to some record surface noise here ...
Find us