thebordella
thebordella
Using API to start recording from custom button, first time page is loaded after browser launch, extension does not 'wake up' to start recording. recorder = new RecordRTC_Extension(recordConfig); recorder.startRecording(); Config...
I am using RecordRTC_Extension() API to control recording using HTML elements on web page. E.g. ```javascript var recorder = new RecordRTC_Extension(); document.getElementById('btn-start-recording').onclick = function() { recorder.startRecording({ enableTabCaptureAPI: true, }); });...
Great module, but I need to run this on the client side in the user's browser. Following some advice online I tried using browserify to convert the inline-css module to...