Releases: michalstocki/FlashWavRecorder
Releases · michalstocki/FlashWavRecorder
0.9.0
- Added
isMicrophoneAccessible
function which allows to check whether microphone is ready to use or not. - Renamed function for requesting permission dialog. For now on we can also request permanent microphone permission by calling
showPermissionWindow({permanent: true})
. - Added
stopRecording
function (record
no longer stops recording). - Added
playing_paused
event which announces playback pause. - Added
permission_panel_closed
event which announces close of permission dialog. - Updated demo (multiple action buttons toggled by CSS).
Upgrading to 0.9.0
- Replace usage of
getMicrophone
withisMicrophoneAccessible
to check whether microphone is ready for recording or not. - Replace calls of
permit
function withshowPermissionWindow
. - Use
stopRecording
function instead ofrecord
to stop recording (record
no longer stops recording).
0.8.0
- Fixed XSS vulnerability issue
- Added ability to get BLOB object of recorded audio
- Added ability to get Base64 of recorded audio
Upgrading to 0.8.0
- Callback used by Flash to communicate with JavaScript for now on, has to be defined as
fwr_event_handler
.
Specifying name of custom function in "Flash vars" asevent_handler
is no longer supported.
0.7.0
- New demo page
- Added ability to get current level of microphone
- Added build using gradle
- Added ability to obtain sound samples from microphone
- Introducing unit tests
0.6.0
- Added ability to pause playback
- Added ability to get current time while playback