Web audio recorder
Posted: 27 Aug 2014 15:29
Hi, I'm doing my first steps with the Web ActiveX plugin. My goal is to create a simple audio recorder to allow my users to dictate into VLC plugin, then save that audio as .wav on my server.
I was able to display the plugin, now I would like to add the "record" button. Can you give me some pointers?.
The code I used is this:
Regards,
Leonardo.
I was able to display the plugin, now I would like to add the "record" button. Can you give me some pointers?.
The code I used is this:
Code: Select all
<html>
<body>
<OBJECT classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab"
width="640" height="480" id="vlc" events="True">
<param name="Src" value="" />
<param name="ShowDisplay" value="True" />
<param name="AutoLoop" value="False" />
<param name="AutoPlay" value="False" />
</OBJECT>
</body>
</html>
Leonardo.