Web Audio Maker

How to Create Audio for My Website?

Download Web Audio Maker Free Trial Version
Home Getting Started Samples Download Buy Now! Screen Shots FAQ Support
Web Audio Maker

FAQ for Web Audio Maker

Web Audio Maker makes audio for your website and plays instantly. It's a very easy to use software. Web Audio Maker records sound and converts into Adobe Flash file (namely SWF). The software also allows you to convert audio files into SWF format.


How does the software work?

Web Audio Maker makes audio for your website and plays instantly. The software records sound and converts into Adobe Flash file (namely SWF), and allows you to convert audio files into SWF format. Then, you insert the SWF to your web page.


Why does Web Audio Maker generate Adobe Flash File?

Adobe Flash Player is the world's most pervasive software platform, used by over 2 million professionals and reaching over 98.8% of Internet-enabled desktops in mature markets as well as a wide range of devices. And, it supports a broad range of platforms and browsers, including new browsers such as Firefox and Safari.


Is SWF generated by Web Audio Maker compatible with Mac OS?

Yes, it is. Adobe Flash Player is compatible with Mac OS, Linux, and Solaris. And, SWF generated by Web Audio Maker complies with Adobe Flash File Specification.


Is it possible to record my voice and then put it on my website?

Yes, it is. For more details, please click here.


Is it possible to record sound from Line In of my computer?

Yes, it is. Before recording, you should choose recording source.

Please click Start -> Settings -> Control Panel -> Sounds and Audio Devices -> Audio tab -> Sound recording section, click button "Volume," and then check "Line In." Refer to screen shot below.


Is it possible to record sound of sound card output?

Yes, it is. Like question above, just check "Stereo Mix."


I have several audio files (MP3 format), how can I put it on my website?

It's easy. Please click here.


What audio formats does the software support?

Web Audio Maker supports popular audio formats such as AAC, AIFF, AIF, AIFC, AFC, AU, CDA, ADX, AC3, FLAC, FLA, MO3, MOD, XM, IT, S3M, MTM, UMX, APE, MAC, MP3, MP2, MP1, M4A, M4B, MP4, MPC, MP+, MPP, SND, OGG, OGA, SPX, TTA, WAV, WAVE, WV, WMA, WMV, and ASF.


Is it possible to convert a volume audio file into SWF format at one time?

Yes, it is. Web Audio Maker supports batch conversion. And the software doesn't limit file number.


What files will be generated by Web Audio Maker software?

Web Audio Maker generates the follow files.

  1. SWF File: This is the destination SWF file.
  2. HTML file: You can double-click the file to play SWF file in web browser. If you do not want to generate the file, please go to "Options" -> "SWF Options" and check off "Create HTML file".

Is it possible to manage a SWF file to play automatically?

Sure. Just click "Options" -> "SWF Options" and check "Play automatically", and then convert again.


I just want to add a background music for my website. I don't need interfaces and want the music play automatically and repeatedly. Is it possible?

Yes, it is. Please click "Options" -> "SWF Options" -> "SWF type" and check "No interfaces SWF," "Play automatically," and "Loop play", and then convert and insert SWF to your web page.


Why does my SWF not play properly?

The problem most is caused by SWF file not available. Just means the outputted SWF wasn't uploaded onto your website. Another reason is path of SWF file isn't correct.


What differences between "single one SWF" and "sound SWF with a shell player SWF"?

Web Audio Maker supports two types of SWFs when user chooses "Playback controllable SWF" on SWF options.

  1. Single one SWF
  2. Sound SWF with a shell player SWF

When choosing "Single one SWF", Web Audio Maker will generate single one SWF that contains both sound and players.

For example: when converting sample.mp3 to SWF, the program generates file sample.swf that contains both sound and buttons; and you can use the following HTML code to embed the SWF into a web page.

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="115" HEIGHT="34">
<PARAM NAME="movie" VALUE="sample.swf">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="bgcolor" VALUE="#FFFFFF">
<EMBED src="sample.swf" quality="high" bgcolor="#FFFFFF" WIDTH="115" HEIGHT="34" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

When choose "Sound SWF with a shell player SWF", Web Audio Maker will generate two SWFs: a sound SWF and a shell player SWF.

For example: when converting sample.mp3 to SWF, the program generates two SWF files, sample.swf (sound SWF) and sample.player.swf (shell player SWF); and you should use the following HTML code to embed the SWF into a web page.

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="115" HEIGHT="34">
<PARAM NAME="movie" VALUE="sample.player.swf?soundswf=sample.swf&autoplay=1&loops=0">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="bgcolor" VALUE="#FFFFFF">
<EMBED src="sample.player.swf?soundswf=sample.swf&autoplay=1&loops=0" quality="high" bgcolor="#FFFFFF" WIDTH="115" HEIGHT="34" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

There's a big difference between the types of SWFs. The "Single one SWF" may cause slow web page loading, as it's loaded along with web page; if size of the SWF file is 2MB, the browser has to download 2MB when loading the web page. But the "Sound SWF with a shell player SWF" does not cause the slow loading, as the browser only download the shell player SWF when load the web page, and the shell player SWF is very small (only 3KB); the sound SWF won't be downloaded until visitor clicks play button. You can click the following two sample links to feel the difference.

Single one SWF: http://www.web-audio-maker.com/samples/single-one.htm
Sound SWF with a shell player SWF: http://www.web-audio-maker.com/samples/sound-shell-player.htm


Which parameters does shell player SWF accept?

The shell player SWF accepts the 3 parameters.

  1. soundswf: the sound SWF file name
  2. autoplay: 1 or 0. 1 means playing sound automatically; 0 means not.
  3. loops: 1 or 0. 1 means loop play; 0 means not loop.

For example: the shell player SWF file name is sample.player.swf, sound SWF file name is sample.swf.

  • Plays automatically and loops: sample.player.swf?soundswf=sample.swf&autoplay=1&loops=1
  • Not play automatically and not loop: sample.player.swf?soundswf=sample.swf&autoplay=0&loops=0

What differences between "streaming sound" and "event sound" when I choose "No interfaces SWF" on SWF options?

Web Audio Maker supports two types of sounds when user chooses "No interfaces SWF" on SWF options.

  1. Streaming Sound
  2. Event Sound

Streaming sound can be played while downloading. But there's a little gap when loop play. Event sound must be downloaded before it's played. There's no gaps when loop play.


Is it possible to add outputted SWF files to my blog?

Yes, it is. And, it's very easy, please follow instructions below to get started.

  1. Convert audio file into SWF format or record your voice and convert to SWF format

  2. Download Easy Inline SWF Plugin v1.0.2 for WordPress from the following link
    http://www.macdiggs.com/download/easyswf.php.zip

  3. Install and activate the plugin
    Upload the extracted easyswf.php file to your wp-content/plugins folder and activate the plugin in admin panel

  4. Create a new post or page or edit the existent post

  5. Upload the SWF file generated by Web Audio Maker via upload panel

  6. While upload is complete, click on the file link and choose "Send to editor"

  7. Done

For more details please visit http://macdiggs.com/index.php/2006/09/13/easy-inline-swf-10-plugin-for-wordpress/.


Why do I see a message prompting me to "click to activate and use this control" when I roll my mouse over a Flash animation?

If you use Internet Explorer to preview the generated SWF file, you may get a message prompting you to "click to activate and use this control" when you roll your mouse over the Flash animation, just like the following figure.

Click to activate and use this control

This is a result of the latest Internet Explorer update. Microsoft recently lost a legal battle with a patent holder about the way Internet Explorer displays OBJECTs and EMBEDs in web pages. Microsoft then decided to update its Internet Explorer browser with changes requiring user input to display and activate ActiveX based media.

Flash is one of many components affected, other major ActiveX controls include:

  • Adobe Reader
  • Apple QuickTime Player
  • Microsoft Windows Media Player
  • Real Networks RealPlayer
  • Sun Java Virtual Machine

Luckily, there are ways for website developers to modify their website so that the user experience is not impacted by Microsoft's changes. We selected an easiest way to fix the problem.

  1. Just below the last <object> in your HTML page, insert the following JavaScript:


  2. <script type="text/javascript" src="ieupdate.js"></script>

  3. Add a small .js file to your website directory. You can get the .js file by click here
  4. Save this file as ieupdate.js to the root of your website (or where you save your html pages)
  5. Upload both files to your web server, and the problem should be solved.

Samples with the fix: http://www.web-audio-maker.com/samples/samples.htm

To read more about this issue and see other solutions available, please visit:
http://support.microsoft.com/kb/912945
http://www.macromedia.com/devnet/activecontent/articles/devletter.html


Where can I get web audio samples outputted by the software?

Please click the following link.
http://www.web-audio-maker.com/samples/samples.htm


How to convert a large-size audio file to a small-size SWF file?

You should choose a smaller bit rate and sample frequency in sound options dialog. For example: 8 kbps 11025 Hz Mono, 24 kbps 22050 Hz Mono etc. The smaller bit rate is, the smaller target SWF file is.


How to output SWF files to a specific folder?

Click "Options" -> "Output Options" tab, choose "A custom folder" for "Output folder", and then "Custom folder" will be enabled. Click "Browse" button to choose an output folder.


Is it possible to import my own player to the software?

Yes, it is. First, Adobe Flash (version 6.0 or above) software have to be installed on your computer, and then write to support@web-audio-maker.com. Then we'll send you the instructions.

IMPORTANT: It is only available for registered user.


Is there a way to make a SWF file with a transparent background on my web page?

Yes, there is. You should add the WMODE parameters to the HTML code.

  1. Add the following parameter to the OBJECT tag:
    <param name="wmode" value="transparent">

  2. Add the following parameter to the EMBED tag:
    wmode="transparent"

Below is a sample.

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="115" HEIGHT="34">
<PARAM NAME="movie" VALUE="sample.swf">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="bgcolor" VALUE="#FFFFFF">
<param name="wmode" value="transparent">
<EMBED src="sample.swf" quality="high" wmode="transparent" bgcolor="#FFFFFF" WIDTH="115" HEIGHT="34" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>


How to change the dimensions (width and height) of SWF file on my web page?

You should change the HTML code of web page file. Below is a sample.

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="115" HEIGHT="34">
<PARAM NAME="movie" VALUE="sample.swf">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="bgcolor" VALUE="#FFFFFF">
<EMBED src="sample.swf" quality="high" bgcolor="#FFFFFF" WIDTH="115" HEIGHT="34" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>


What happens after I place an order?

You will receive an email confirming your order shortly after placing an order. Then, within 24 hours, you will receive the second email with your registration code.

If you do not get your code or if you've lost it, please email us at sales@web-audio-maker.com. Please include your name, email address, and order confirmation number (if you have it). We will be happy to help you.


I have more questions - who should I write to?

Please send your additional questions to support@web-audio-maker.com.

 

Top

 

Home | Getting Started | Samples | Download | Buy Now! | Screen Shots | FAQ | Support | Contact | Links
Copyright © 2008-2009 WEB-AUDIO-MAKER.COM All rights reserved. Privacy Policy