AudioWeb is a simple to use sound manager applet. It helps adding interactive sounds to web pages. In addition the applet does the spectral analysis of the sound and displays visual effects. There are two modes of playing audio clips: simple mode, when no visual effects are displayed, and visual mode.
Unzip with a
compression utility.
Java Source:
Unavailable
Sample HTML Source:
<APPLET CODE=com.carpathia.audioweb.SBufferedAW.class
ARCHIVE=sbufferedaw.jar
NAME="aw"
WIDTH=200 HEIGHT=70>
<param name=audioClipsList value="audio.dat">
<param name=maxValueColor value=082359 >
<param name=minValueColor value=C4CFE6 >
<param name=foreground value=FC0824 >
<param name=background value=F7F1B4>
<param name=numberOfBars value=18 >
</APPLET>
<FORM method="POST" name="oForm">
<INPUT type="button" value="Play" onclick=playClip()>
<INPUT type="button" value="Loop" onclick=loopClip()>
<INPUT type="button" value="Stop" onclick=stop()>
<SELECT ID="oSelect" name="oSongs" SIZE="1">
<OPTION value="Liliacha" SELECTED>Liliacha
</SELECT>
<FORM>
<SCRIPT LANGUAGE="JavaScript">
function playClip() {
var index = document.oForm.oSongs.selectedIndex;
document.aw.playVisual
(document.oForm.oSongs.options[index].value);
}
function loopClip() {
var index = document.oForm.oSongs.selectedIndex;
document.aw.loopVisual
(document.oForm.oSongs.options[index].value);
}
function stop() {
document.aw.stopVisual();
}
</SCRIPT>
Status: Free
Author: Laurentiu N. Taropa
Homepage: http://www.carpathia.ro/AudioWeb/
Upload Date: February 20, 2002
New on the Java Boutique:
New Review:
Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling
API boasts simplicity, ease-of-integration, a well-rounded feature
set, and it's free!
New Applet:
Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA
sequences into three useful formats.
Elsewhere on internet.com:
WebDeveloper Java
Lots of Java information on webdeveloper.com
WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.
ScriptSearch Java
Hundreds of free Java code files to download.
jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.