Our new Java applet provides even lower latency on VoIP calls over our existing Flash version.
For most consumer-facing sites, we still recommend using Flash due to its more pervasive deployment base.
Here is a demo of our Java applet version:
If you would prefer to use our Java applet on the desktop which offers improved/lower latency, we have provided a handy Java detection utility that can used like so. Note: If Java is not detected, Phono will fallback to Flash.
$(document).ready(function(){
var audioType = 'auto';
if (navigator.javaEnabled()) {
audioType = 'java';
}
var phono = $.phono({
apiKey: "YOUR_KEY_GOES_HERE",
audio: {type:audioType,
jar:"http://s.phono.com/releases/1.0/plugins/audio/phono.audio.jar"},
onReady: function(event) {
// stuff
}
});
Note: If you are running MacOS Lion, you may need to follow these instructions for getting Java applets to automatically load in your web browser.