Home     Services     Gallery     Flash Design     Graphic Design     Social Media     News     Español     About     Contact      
 

Office Live

Including Sounds

Updated

 
"I'm Constructing"
 
Adding sound to your site can be essential for some things.
 
 
 
 
It's generally not a good idea to force your visitors to listen to music when they arrive at your page. The "autoplay" function should be set to false. Give them the right to decide.
The MP3 compression format is the standard for web pages. I generally embed with the Quicktime player. File size is an issue for sound files and converting your files to MP3 is a good idea. If you have iTunes you can convert the AIFF files to MP3.

 

 

 

 

 

 
  
        

 Method 1  - The quick and maybe not so clean method for browsers. This works in some browsers.

 

  Artotems World Jazz Band

Far From Somewhere 

 

 

 

    


 

© 2006 Artotems Co.

 

 

Method: 

 

1. Upload the sound file to your documents area. ("Documents" in Website area of Member Center).

Click Upload. Click "Browse" to find the file on your computer. Add it and click "Upload".

After it uploads then click "Close".


2. Go to the page where you want the file and click inside a zone.


3. Click Modules and HTML.

 

4, Copy the code below and paste it into the HTML dialog box.



 
<embed src="/Documents/yourfile.mp3" autostart=false loop=false volume=100 width=250 height=45> </embed>

 

 


5. Replace yourfile.mp3 with the actual file name of your sound file. Adjust the volume, width and height of the player.

 

6. Enjoy!

 

 Method 2 - The Safe  and slightly larger Method (works in all browsers)

 

 John Martyn

On The Cobbles 

Buy it at Amazon!

 

 

 

    

 

 

 

 

 

   

 

 

Method:

 

1. Upload the sound file to your documents area. ("Documents" in Website area of Member Center).

Click Upload. Click "Browse" to find the file on your computer. Add it and click "Upload".

After it uploads then click "Close".


2. Go to the page where you want the file and click inside a zone.


3. Click Modules and HTML.

 

4. Copy this code into the HTML dialog box.

 



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Embed MP3 Audios on Page</title>
<style type="text/css">
object {position:relative;bottom:-1px;left:4px}
</style>
</head>
<body>
<p>The Name of the Sound File <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="74" height="16">
    <param name="src" value="http://yoursite.com/Documents/yourfile.mp3" />
    <param name="controller" value="true" />
    <param name="autoplay" value="false" />
   
<!--[if !IE]>-->
<object type="audio/mpeg"
        data="http://yoursite.com/Documents/yourfile.mp3"
        width="49" height="16">
        <param name="autoplay" value="false" />
        <param name="controller" value="true" />
       
        </object>
<!--<![endif]-->

</body>
</html>

 


 

5. Alter "The Name of the Sound File" to whatever you want.

Alter both instances of yoursite/Documents and yourfile/mp3. There are two of each.

Alter the width and height in both places to adjust the size of the player.

 

6. Click "OK"

 

Enjoy!