summaryrefslogtreecommitdiffstats
path: root/2020/organizers-notebook.org
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2020-12-09 15:31:09 -0500
committerSacha Chua <sacha@sachachua.com>2020-12-09 15:31:09 -0500
commitd1236bf3619a4f8844281f5c511c3057e6a9a1db (patch)
treebc3d5a6a975d0478f8f2b11a90ad82b48276c151 /2020/organizers-notebook.org
parent7d8fa19e6a55dd374039bd1848f9260e4708c1cb (diff)
downloademacsconf-wiki-d1236bf3619a4f8844281f5c511c3057e6a9a1db.tar.xz
emacsconf-wiki-d1236bf3619a4f8844281f5c511c3057e6a9a1db.zip
Add low-res links
Diffstat (limited to '2020/organizers-notebook.org')
-rw-r--r--2020/organizers-notebook.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/2020/organizers-notebook.org b/2020/organizers-notebook.org
index 6eb2320f..141f08e0 100644
--- a/2020/organizers-notebook.org
+++ b/2020/organizers-notebook.org
@@ -2,6 +2,9 @@
** TODO Create tasks for each of the subtitles
** TODO Figure out how to generate subtitles for the ones that didn't get auto-generated
** TODO Link compressed videos on each talk page
+#+begin_src emacs-lisp
+(mapcar (lambda (o) ) (directory-files "~/vendor/emacsconf-original-audio")
+#+end_src
** Manually transcribe
Either subtitles (with timestamps) or a text transcript (no timestamps) is perfectly okay.
@@ -278,3 +281,9 @@ nice ffmpeg -y -i $1 -c:v libvpx-vp9 -b:v 0 -crf $Q -aq-mode 2 -c:a copy -tile-c
(rename-file file new-file t)
(message "%s" new-file)))
#+end_src
+
+* Code sachac used to play a video file back over a virtual microphone for passing to dictation
+#+begin_src sh :eval no
+sudo modprobe snd-aloop
+ffmpeg -re -i emacsconf-2020--10-lead-your-future-with-org--andrea.webm -f alsa -ar 44100 hw:1,1
+#+end_src