See the webrtcHacks post for full details.
Quick hack to record your self hosted Jitsi Meet session locally, just using your browser. Uses getDisplayMedia
to capture user selected screen and getUserMedia
for local audio.
Makes sure to click "Capture Audio" if you are using Chrome to capture the remote participant
sound via the system audio.
git clone https://github.com/webrtchacks/jitsiLocalRecorder.git
cd jitsiLocalRecorder
./install.sh
Installation assumes Jitsi Meet's web files are located in /usr/share/jitsi-meet/index.html
.
If your files are located somewhere else, then run ./install.sh {{meet_web_dir}}
with the
correct directory.
Load getDisplayMedia.html
to:
- Check if your browser supports
getDisplayMedia
(it should) - Demonstrate how getDisplayMedia ignores user constraints
- Check if you can capture audio (currently only Chrome for some user selections)