Back to Webrtc Experiment

HTML5 WebPage Activity Recording using RecordRTC

RecordRTC/Canvas-Recording/webpage-recording.html

latest606 B
Original Source

HTML5 WebPage Activity Recording using RecordRTC

resize textarea
You can resize image or above header and drag/move video:

There is another demo, that allows you record drawings!

var recorder = RecordRTC(document.documentElement, {
    type: 'canvas',
    showMousePointer: true
});
recorder.startRecording();
recorder.stopRecording(function(url) {
    window.open(url);
});

Start Canvas RecordingStop Other Canvas-Recording Demos