Hi,
Our application pauses and resumes RootCause in order to prevent password key strokes from being recorded.
Since the default pause and resume functions logger.recorder.pause() and logger.recorder.resume() do not seem to pause the video, we currently use the following functions for pause and resume:
// pause
logger.recorder.stop();
// resume
logger.recorder.start();
We also use the following override function provided to prevent the video recording from halting:
stopVideoRecording : function () {
var me = this
if (me.videoDurationTimeout) {
clearTimeout(me.videoDurationTimeout);
}
if (me.mirrorProducer) {
me.mirrorProducer.disconnect()
}
},
But after the user logs out and logs back in, on executing logger.recorder.start() to resume the video, the video does not play even though time is alloted to the video and the timeline changes are stored. Dragging the video bar directly to after the new start() also does not show any video. Can we see the users video after execution of resume?
Thanks,
Rayudu