Skip to content

Commit

Permalink
fixes #60
Browse files Browse the repository at this point in the history
  • Loading branch information
edimuj committed Mar 28, 2018
1 parent 921cad1 commit 9a2d00d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ After the Cordova `deviceready` event has fired:

// Start with default values and let the plugin handle conversion of
// raw data, and therefore will not send any audioinput events.
// If an audio context is not provided, the plugin will create one for you.
// If an audio context is not provided, the plugin will create one for you.``

audioinput.start({
streamToWebAudio: true
});


// Connect the audioinput to the device speakers in order to hear the captured sound.

audioinput.connect(audioinput.getAudioContext().destination);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-audioinput",
"version": "1.0.0",
"version": "1.0.1",
"description": "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.",
"cordova": {
"id": "cordova-plugin-audioinput",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-audioinput"
version="1.0.0"
version="1.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand Down

0 comments on commit 9a2d00d

Please sign in to comment.