Book HomeHTML & XHTML: The Definitive GuideSearch this book

5.4. Background Audio

There is one other form of inline multimedia generally available to web surfers -- audio. Most browsers treat audio multimedia as separate documents, downloaded and displayed by special helper applications, applets, or plug-ins. Internet Explorer, on the other hand, contains a built-in sound decoder and supports a special tag that lets you integrate an audio file with your document that plays in the background as a soundtrack for your page. Section 12.1, "Applets and Objects" Section 12.2, "Embedded Content"

We applaud the developers of Internet Explorer for providing a mechanism that more cleanly integrates audio into HTML and XHTML documents. And the possibilities with audio are very enticing. But at the same time, we caution authors that the special tags and attributes for audio don't work with other browsers, and whether this is the method that the majority of browsers will eventually support is not at all assured. So, beware.

5.4.1. The <bgsound> Tag

Use the <bgsound> tag to play a soundtrack in the background. This tag is for Internet Explorer documents only. All other browsers ignore the tag. It downloads and plays an audio file when the host document is first downloaded by the user and displayed. The background sound file also will replay whenever the user refreshes the browser display.

<bgsound>

Function:

Plays a soundtrack in the document background

Attributes:

LOOP

SRC

End tag:

None in HTML

Contains:

Nothing

Used in:

body_content

5.4.1.1. The src attribute

The src attribute is required for the <bgsound> tag. Its value references the URL for the related sound file. For example, when the Internet Explorer user first downloads a document containing the tag:

<bgsound src="audio/welcome.wav">

they will hear the welcome.wav audio file -- perhaps an inviting message -- play once through their computer's sound system.

Currently, Internet Explorer can handle three different sound format files: wav, the native format for PCs; au, the native format for most Unix workstations; and MIDI, a universal music-encoding scheme (see also Table 5-1).

Table 5-1. Common Multimedia Formats and Respective Filename Extensions

Format

Type

Extension

Platform of Origin

GIF

Image

gif

Any

JPEG

Image

jpg, jpeg, jpe

Any

XBM

Image

xbm

Unix

TIFF

Image

tif, tiff

Any

PICT

Image

pic, pict

Any

Rasterfile

Image

ras

Sun

MPEG

Movie

mpg, mpeg

Any

AVI

Movie

avi

Microsoft

QuickTime

Movie

qt, mov

Apple

AU

Audio

au, snd

Sun

WAV

Audio

wav

Microsoft

AIFF

Audio

aif, aiff

Apple

MIDI

Audio

midi, mid

Any

PostScript

Document

ps, eps, ai

Any

Acrobat

Document

pdf

Any

PNG

Image

png

Any

5.4.1.2. The loop attribute

Like Internet inline movies, the loop attribute for the browser's <bgsound> tag lets you replay a background soundtrack for a certain number of times (or over and over again forever), at least until the user moves on to another page or quits the browser.

The value of the loop attribute is the integer number of times to replay the audio file, or infinite, which makes the soundtrack repeat endlessly.

For example:

<bgsound src="audio/tadum.wav" loop=10>

repeats the ta-dum soundtrack ten times, whereas:

<bgsound src="audio/noise.wav" loop=infinite>

continuously plays the noise soundtrack.

5.4.2. Alternative Audio Support

There are other ways to include audio in your documents, using more general mechanisms that support other embedded media as well. The most common alternative to the <bgsound> tag is the <embed> tag, originally implemented by Netscape and supplanted by the <object> tag in the HTML 4 and XHTML standards. Take a look in Chapter 12, "Executable Content" for details.



Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.