UNPKG

cordova-plugin-audioinput

Version:

This cordova plugin enables audio capture from the device microphone, by in (near) real-time forwarding raw audio data to the web layer of your application.

36 lines (32 loc) 1.28 kB
<!DOCTYPE html> <head> <title>Cordova Plugin AudioInput Demo</title> <meta name="format-detection" content="telephone=no"> <meta name="msapplication-tap-highlight" content="no"> <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"> <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="w3-center"> <h4>Cordova AudioInput Plugin<br> Demos</h4> <div class="w3-container w3-border w3-padding-4 w3-card-4"> <div class="w3-row"> <div class="w3-col s12 m6 l4"> <a class="w3-btn margin-5" href="events-demo.html">Events Demo</a> </div> <div class="w3-col s12 m6 l4"> <a class="w3-btn margin-5" href="webaudio-demo.html">Web Audio Demo</a> </div> <div class="w3-col s12 m6 l4"> <a class="w3-btn margin-5" href="wav-demo.html">WAV Demo</a> </div> <div class="w3-col s12 m6 l4"> <a class="w3-btn margin-5" href="file-demo.html">File Demo</a> </div> </div> </div> </div> </body>