From 839b298776e262a99eec18d23f4e52363fe937bc Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Wed, 9 Dec 2020 12:17:50 -0500 Subject: Add more autogenerated subtitles --- 2020/organizers-notebook.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to '2020/organizers-notebook.org') diff --git a/2020/organizers-notebook.org b/2020/organizers-notebook.org index 455af4f1..6e7deffb 100644 --- a/2020/organizers-notebook.org +++ b/2020/organizers-notebook.org @@ -1,3 +1,7 @@ +* Tasks +** 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 * Things to check or decide - Can we stream from multiple rooms without getting thoroughly confused? - Assign rooms shortly before presentation @@ -207,3 +211,15 @@ Q=56 nice 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 999 -pass 1 -f webm -threads 8 /dev/null && nice ffmpeg -y -i $1 -c:v libvpx-vp9 -b:v 0 -crf $Q -aq-mode 2 -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 999 -threads 8 $2 #+end_src +* Code sachac used to move sbv files + +#+begin_src emacs-lisp +(defun my/latest-file (path &optional filter) + (car (sort (seq-remove #'file-directory-p (directory-files path 'full filter t)) #'file-newer-than-file-p))) +(defun my/rename-latest-download () + (interactive) + (let* ((file (my/latest-file "~/Downloads")) + (new-file (expand-file-name (concat (file-name-base (dired-get-filename)) "-autogen." (file-name-extension file)) "~/vendor/emacsconf-wiki/2020/subtitles/"))) + (rename-file file new-file t) + (message "%s" new-file))) +#+end_src -- cgit v1.2.3