quangbd1904 / wami-recorder

Automatically exported from code.google.com/p/wami-recorder
0 stars 0 forks source link

How to Pause and Resume audio recording in Wami Player #50

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hello,
I have used the wami player to record audio in C#.Net MVC code where I declare 
following tag on view page.

<div id="wami"></div>

and then done code in javascript file:

Wami.setup({
      id: "wami",
      onReady: setupGUI
});
function setupGUI() {
     var gui = new Wami.GUI({
     id: "wami",
     recordUrl: URL
     });
     gui.startRecording();
     //calling gui.stopRecording(); after fixed time of interval
}

I am using following files to support wami player:

wamirecorder.js
wamigui.js
wami.swf

This code is working fine but Now I want to develop pause-resume and record 
again functionality so please provide a way to develop this with Wami player.

Thanks in Advance!

Original issue reported on code.google.com by dadheech...@gmail.com on 10 Apr 2014 at 5:48