Last active
October 13, 2021 12:56
-
-
Save santaklouse/9c22c4c673c46a2f3490e7793c1dbe5e to your computer and use it in GitHub Desktop.
Start video+audio recording of Zoom Meeting window
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env bash | |
| REC_PROG_PATH=`which recordmydesktop` | |
| if [[ -z $REC_PROG_PATH ]]; then | |
| sudo apt-get install recordmydesktop | |
| REC_PROG_PATH=`which recordmydesktop` | |
| fi; | |
| WINDOW_ID=`xwininfo -name "Zoom Meeting" | grep 'id: 0x' | grep -Eo '0x[a-z0-9]+'` | |
| "$REC_PROG_PATH" --no-wm-check --on-the-fly-encoding --v_quality=50 --windowid="$WINDOW_ID" --no-cursor -o zoom.ogv |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install:
after the start of the meeting:
# record_zoom