Reputation: 69
So i am developing a MS Office addin in Reactjs and i want to implemet a screen recording functionality. As the addins works as a browser, therefore browser asks user to give permission to record the screen.
But in MS Office addins, there is not address toolbar in Office addins. So my recording functionality is not working due to no permission from the browser.
My status is always in the 'idle' mode
const { status, startRecording, stopRecording, mediaBlobUrl } = useReactMediaRecorder({ screen: true, video: true });
Is there a way to fix that?
Upvotes: 0
Views: 18