diff options
author | EmacsConf <emacsconf-org@gnu.org> | 2022-11-03 11:59:10 -0700 |
---|---|---|
committer | EmacsConf <emacsconf-org@gnu.org> | 2022-11-03 11:59:10 -0700 |
commit | 99df03c875faf14d96800fdf705379ae06b2fcb9 (patch) | |
tree | 01b72df97163bb1b7d7bd9bbf5164045a85fb046 | |
parent | 7572190709a6dfad9a641ad35b7e98bbdbb5bc03 (diff) | |
download | emacsconf-el-99df03c875faf14d96800fdf705379ae06b2fcb9.tar.xz emacsconf-el-99df03c875faf14d96800fdf705379ae06b2fcb9.zip |
Add pad and Q&A
-rw-r--r-- | emacsconf-stream.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/emacsconf-stream.el b/emacsconf-stream.el index 9e4ab74..26586b2 100644 --- a/emacsconf-stream.el +++ b/emacsconf-stream.el @@ -170,6 +170,26 @@ Final files should be stored in /data/emacsconf/stream/YEAR/video-slug--main.web (concat "~/bin/track-mpv " (shell-quote-argument (emacsconf-stream-get-filename talk)))))) +(defun emacsconf-stream-open-pad (talk) + (interactive (list (emacsconf-complete-talk-info))) + (let ((default-directory (emacsconf-stream-track-login talk))) + (shell-command + (concat "firefox -new-window " + (shell-quote-argument (plist-get talk :pad-url)) + " & ")))) + +(defun emacsconf-stream-join-qa (talk) + "Join the Q&A for TALK. +This uses the BBB room if available, or the IRC channel if not." + (interactive (list (emacsconf-complete-talk-info))) + (let ((default-directory (emacsconf-stream-track-login talk))) + (shell-command + (concat "firefox -new-window " + (shell-quote-argument + (or (plist-get talk :bbb-room) + (plist-get talk :webchat-url))) + " & ")))) + (defun emacsconf-stream-write-talk-overlay-svgs (talk video-filename other-filename) (setq talk (emacsconf-stream-add-talk-props talk)) (let ((dom (xml-parse-file (expand-file-name "roles/obs/overlay.svg" emacsconf-ansible-directory))) |