@lorenzoPlease help in this issue, Is any event is present to stop the recording for the particular feed in the room. We are using the below code to pause the feed.
let subscribe = {
request: "configure",
video : false
};
this.pluginHandle.send({ message: subscribe });
Artifacts are normal. You’re brutally telling Janus not to relay video frames (not only for recordings), and maybe resuming it after some time. Since that may impact keyframes you may get artifacts in the recordings. Nothing you can do about it, if not wait for the next keyframe that may fix it (which usually follows shortly thereafter).