From d50b738c6e699fc18c36a23f58c2614e546e3be3 Mon Sep 17 00:00:00 2001 From: Yi Kai Date: Mon, 27 Mar 2017 09:39:21 +0800 Subject: [PATCH] fix demo url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4207db..4608a3b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ I whipped this app up to show a basic volume meter on live audio input. It does A "volume" meter can mean many things; if you want to do clip detection, you really need to access every sample. If you don't need clip detection, I might suggest using an Analyser and getByteTimeDomainData, since it will likely have lower CPU overhead. Note that it is CRITICALLY IMPORTANT to disassociate visual rendering (in the requestAnimationFrame loop) from the onaudioprocess function - you do NOT want to trigger a relayout from inside your audio handler, or it may glitch or cause other issues. -It's also hosted at http://webaudiodemos.appspot.com/volume-meter/. +It's also hosted at https://webaudiodemos.appspot.com/volume-meter/. Check it out, feel free to fork, submit pull requests, etc. MIT-Licensed - party on.