diff options
Diffstat (limited to '2022/organizers-notebook')
-rw-r--r-- | 2022/organizers-notebook/index.org | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 37c41120..5b2ec130 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -39,7 +39,7 @@ General: - [[elisp:(emacsconf-show-my-agenda)][Show my agenda]] - customize emacsconf-org-tag Importing changes: -(This file is frequently edited, so you'd better pull before making your changes.) +(This file is frequently edited, so please pull before making your changes.) - [[elisp:(magit-pull-from-pushremote nil)][Pull from origin]] Export: @@ -200,7 +200,13 @@ CLOSED: [2022-11-06 Sun 15:26] :PROPERTIES: :CUSTOM_ID: prepare-audio :END: +** Volunteer update +:PROPERTIES: +:CUSTOM_ID: volunteer-2022-11-14 +:END: +- talk banners, akshay + * Projects and other long-running tasks :PROPERTIES: :CUSTOM_ID: projects @@ -235,7 +241,7 @@ CLOSED: [2022-10-29 Sat 09:58] Remember to update [[file:../prepare.md::Compression]] with the new incantation. **** Incantation from last year -#+begin_src sh +#+begin_src sh :eval no Q=32 ffmpeg -y -i "$1" -c:v libvpx-vp9 -b:v 0 -crf $Q -aq-mode 2 -an -tile-columns 0 -tile-rows 0 -frame-parallel 0 -cpu-used 8 -auto-alt-ref 1 -lag-in-frames 25 -g 240 -pass 1 -f webm -threads 8 /dev/null && ffmpeg -y -i "$1" -c:v libvpx-vp9 -b:v 0 -crf $Q -c:a copy -tile-columns 2 -tile-rows 2 -frame-parallel 0 -cpu-used -5 -auto-alt-ref 1 -lag-in-frames 25 -pass 2 -g 240 -threads 8 "$2" @@ -254,7 +260,7 @@ Changelog: - Put number of CPU in variable and use it for ~cpu-used~ and ~threads~ - Stick to default for ~auto-alt-ref~ - Stick to default for ~lag-in-frames~ -#+begin_src sh +#+begin_src sh :eval no Q=32 CPU=8 ffmpeg -y -i "$1" -c:v libvpx-vp9 -b:v 0 -crf $Q -an -row-mt 1 -tile-columns 2 -tile-rows 2 -cpu-used $CPU -g 240 -pass 1 -f webm -threads $CPU /dev/null && @@ -279,7 +285,8 @@ DEADLINE: <2022-11-11 Fri> :CUSTOM_ID: obs-scenes :END: - [ ] corwin is out from Nov 11-20, and we should start working on them before then. -** TODO Make something to display between talks :akshay196: +** DONE Make something to display between talks :akshay196: +CLOSED: [2022-11-07 Mon 14:46] :PROPERTIES: :CREATED: [2022-10-03 Mon 07:50] :CUSTOM_ID: intro @@ -293,6 +300,9 @@ What to show in between talks: - Previous talk: title, speaker, pronouns, talk page, Q&A information (if still live) - Next talk: title, speaker, pronouns, talk page, Q&A information, countdown +https://media.emacsconf.org/2022/backstage/gen-in-between.pdf +https://media.emacsconf.org/2022/backstage/dev-in-between.pdf + - Good: Static image, maybe created with LaTeX - Better: Video with unobtrusive sound so people can doublecheck that their audio works - Best: Emacs thing so that we can have a dynamic timer and last-minute announcements, and so that it's Emacs =) @@ -341,7 +351,8 @@ placeholder text Overlay considerations: - talk videos will likely have subtitles; no subtitles for Q&A - zaeph doesn't like vertical text -*** TODO Generate talk banners :sachac: +*** DONE Generate talk banners :sachac: +CLOSED: [2022-11-07 Mon 14:46] https://gitlab.com/akshay196/emacsconf-artwork/-/blob/main/2022/talk-banner/sample.svg ** TODO Create protocol for live Q&A :zaeph: @@ -925,7 +936,7 @@ console.log(JSON.stringify([...document.querySelectorAll('.delete-room')].map((o see conf.org for the rest of the process *** TODO Add volunteers to the BBB rooms -DEADLINE: <2022-11-05 Sat> +DEADLINE: <2022-11-18 Fri> ** INPROGRESS Coordinate and help volunteers :sachac: :PROPERTIES: :CUSTOM_ID: coordinate-volunteers @@ -1152,7 +1163,7 @@ echo '{ "command": ["loadfile", "test2.webm"] }' | socat - ~/mpv-socket-emacscon CLOSED: [2022-11-03 Thu 14:10] *** TODO Set timers for changing todo state -#+begin_src emacs-lisp +#+begin_src emacs-lisp :eval no (defun emacsconf-schedule-test-buffer (info) (mapcar (lambda (o) (plist-put o :buffer "1") o) info)) (let ((emacsconf-schedule-strategies '(emacsconf-schedule-test-buffer))) @@ -1977,7 +1988,7 @@ information about the noise-profile. Following is the ffmpeg incantation to use to apply the filter-model. Make sure to modify the ~DENOISER~ variable and adapt input/output. -#+begin_src sh :tangle audio-denoiser.sh +#+begin_src sh :tangle audio-denoiser.sh :eval no DENOISER="/path/to/audio-denoiser-model-mp.rnnn" input="original.opus" output="denoised.opus" |