From 014312de7356d64a481e351b31411ea822c6acbb Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Fri, 17 Dec 2021 00:51:42 -0500 Subject: handle compressed56, export to CSV --- emacsconf-publish.el | 227 +++++++++++++++++++++++++++++++++++---------------- emacsconf-subed.el | 46 +---------- emacsconf.el | 9 ++ 3 files changed, 166 insertions(+), 116 deletions(-) diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 55b3458..e306518 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -29,7 +29,7 @@ :type 'string :group 'emacsconf) -(defcustom emacsconf-main-extensions '(".org" ".odp" ".pdf" ".el" "--main.vtt" "--main_fr.vtt" "--main_ja.vtt" "--chapters.vtt" "--main--chapters.vtt") +(defcustom emacsconf-main-extensions '(".org" ".odp" ".pdf" ".el" "--compressed56.webm" "--main.vtt" "--main_fr.vtt" "--main_ja.vtt" "--chapters.vtt" "--main--chapters.vtt") "Extensions to list on public pages." :type '(repeat string) :group 'emacsconf) @@ -88,14 +88,14 @@ (when emacsconf-public-media-directory (emacsconf-make-public-index (expand-file-name "index.html" emacsconf-public-media-directory)) (emacsconf-generate-playlist (expand-file-name "index.m3u" emacsconf-public-media-directory) - "EmacsConf2021" - (emacsconf-public-talks emacsconf-info) - (format "https://media.emacsconf.org/%s/" emacsconf-year))) + "EmacsConf2021" + (emacsconf-public-talks emacsconf-info) + (format "https://media.emacsconf.org/%s/" emacsconf-year))) (when emacsconf-protected-media-directory (emacsconf-make-protected-index (expand-file-name "index.html" emacsconf-protected-media-directory))) (emacsconf-generate-playlist (expand-file-name "index.m3u" emacsconf-protected-media-directory) - "EmacsConf2021" (emacsconf-filter-talks emacsconf-info) - (format "https://media.emacsconf.org/%s/protected/" emacsconf-year))) + "EmacsConf2021" (emacsconf-filter-talks emacsconf-info) + (format "https://media.emacsconf.org/%s/protected/" emacsconf-year))) (defun emacsconf-index-card (talk &optional extensions) "Format an HTML card for TALK, linking the files in EXTENSIONS." @@ -141,10 +141,15 @@ (file-name-nondirectory video-file))) :captions (and video-file - (emacsconf-video-subtitle-tracks - (expand-file-name (concat (file-name-base video-file) ".vtt") wiki-caption-dir) - (or (plist-get talk :track-base-url) - (plist-get talk :base-url)))) + (let ((tracks + (emacsconf-video-subtitle-tracks + (expand-file-name (concat (file-name-base video-file) ".vtt") wiki-caption-dir) + (or (plist-get talk :track-base-url) + (plist-get talk :base-url))))) + (cond + ((zerop (length tracks)) "") + ((eq (plist-get talk :format) 'wiki) (format "captions=\"\"\"%s\"\"\"" tracks)) + (t tracks)))) :chapter-track (or (plist-get chapter-info :track) "") :chapter-list (if chapter-info @@ -183,7 +188,7 @@ info (if (and video-file (file-exists-p video-file)) (if (eq (plist-get talk :format) 'wiki) - "[[!template id=\"vid\" vidid=\"${video-id}\" src=\"${source-src}\" poster=\"${poster}\" captions=\"\"\"${captions}\"\"\" + "[[!template id=\"vid\" vidid=\"${video-id}\" src=\"${source-src}\" poster=\"${poster}\" ${captions} size=\"${video-file-size}\" duration=\"${video-duration}\" other_resources=\"\"\"${other-files}${toobnix-info}\"\"\"]] ${chapter-list} " @@ -255,15 +260,15 @@ ${info} (if (plist-get o :qa-public) (concat "\n\n# Q&A\n\n" (emacsconf-index-card (append - (list - :public 1 - :video-id "qanda" - :toobnix-url nil - :video-file (expand-file-name - (concat (file-name-sans-extension (plist-get o :video-slug)) "--answers.webm") - emacsconf-captions-directory)) - o) - (list "--answers.vtt" "--answers--chapters.vtt"))) + (list + :public 1 + :video-id "qanda" + :toobnix-url nil + :video-file (expand-file-name + (concat (file-name-sans-extension (plist-get o :video-slug)) "--answers.webm") + emacsconf-captions-directory)) + o) + (list "--answers.vtt" "--answers--chapters.vtt"))) ""))) @@ -329,24 +334,24 @@ ${info} (emacsconf-generate-schedule-page o))))) (defun emacsconf-generate-talks-page (emacsconf-info) - (interactive "p") - (let ((info emacsconf-info)) - (with-temp-buffer - (find-file "talk-details.md") - (erase-buffer) - (insert (format "%s
DurationTitleSpeakers
" - (mapconcat - (lambda (o) - (let* ((title (plist-get o :title)) - (speakers (plist-get o :speakers))) - (if (null (plist-get o :talk-id)) - (format "%s" (emacsconf-format-talk-link o)) - (format "%s%s%s" - (plist-get o :duration) - (emacsconf-format-talk-link o) - (plist-get o :speakers))))) - info "\n"))) - (save-buffer)))) + (interactive "p") + (let ((info emacsconf-info)) + (with-temp-buffer + (find-file "talk-details.md") + (erase-buffer) + (insert (format "%s
DurationTitleSpeakers
" + (mapconcat + (lambda (o) + (let* ((title (plist-get o :title)) + (speakers (plist-get o :speakers))) + (if (null (plist-get o :talk-id)) + (format "%s" (emacsconf-format-talk-link o)) + (format "%s%s%s" + (plist-get o :duration) + (emacsconf-format-talk-link o) + (plist-get o :speakers))))) + info "\n"))) + (save-buffer)))) (defun emacsconf-generate-main-schedule (&optional filename) (interactive) @@ -473,14 +478,14 @@ ${info} (mapconcat (lambda (f) (format "
  • %s
    %s
    %s
  • " - (plist-get f :title) - (plist-get f :speakers) - (emacsconf-index-card - (append - f - (list :extra - (if (plist-get f :caption-note) (concat "
    " (plist-get f :caption-note) "
    ") ""))) - (append emacsconf-main-extensions emacsconf-protected-extensions)))) + (plist-get f :title) + (plist-get f :speakers) + (emacsconf-index-card + (append + f + (list :extra + (if (plist-get f :caption-note) (concat "
    " (plist-get f :caption-note) "
    ") ""))) + (append emacsconf-main-extensions emacsconf-protected-extensions)))) received "\n") (format @@ -508,7 +513,27 @@ ${info} "

    " emacsconf-name " " emacsconf-year "

    " "
    M3U playlist for playing in MPV and other players
    " "
      " - (mapconcat (lambda (f) (format "
    1. %s
    2. " (emacsconf-index-card f '(".org" ".pdf" "--main.vtt")))) + (mapconcat (lambda (o) + (format "
    3. %s
      %s
    4. %s" + (plist-get o :url) + (plist-get o :title) + (plist-get o :speakers) + (emacsconf-index-card o '(".org" ".pdf" "--main.vtt" "--compressed56.webm")) + (if (plist-get o :qa-public) + (format "
    5. Q&A for %s
      %s
    6. " + (plist-get o :title) + (emacsconf-index-card (append + (list + :public 1 + :video-id "qanda" + :toobnix-url nil + :video-file (expand-file-name + (concat (file-name-sans-extension (plist-get o :video-slug)) + "--answers.webm") + emacsconf-captions-directory)) + o) + (list "--answers.vtt" "--answers--chapters.vtt"))) + ""))) (emacsconf-public-talks emacsconf-info) "\n") "
    " @@ -556,7 +581,7 @@ ${info} (list "--answers.vtt" "--answers--chapters.vtt")) ""))) info "\n")) - ""))) + ""))) @@ -564,26 +589,20 @@ ${info} (when (file-exists-p filename) (let ((chapters (with-temp-buffer (insert-file-contents filename) - (subed-vtt--init) - (emacsconf-chapters-buffer-as-list)))) + (subed--init "vtt") + (subed-subtitle-list)))) (list :track (format "" (concat (or track-base-url "") (file-name-nondirectory filename))) - :md (mapconcat - (lambda (chapter) - (format "%s %s\n" - (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (plist-get chapter :start-ms) 1000))) - (plist-get chapter :text))) - chapters - "") + :md (subed-convert--chapters chapters) :html (format "
      \n%s\n
    " (mapconcat (lambda (chapter) (format "
  • %s %s
  • " - (/ (plist-get chapter :start-ms) 1000.0) - (/ (plist-get chapter :stop-ms) 1000.0) - (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (plist-get chapter :start-ms) 1000))) - (plist-get chapter :text))) + (/ (elt chapter 1) 1000.0) + (/ (elt chapter 2) 1000.0) + (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (elt chapter 1) 1000))) + (elt chapter 3))) chapters "\n")))))) @@ -612,21 +631,85 @@ ${info} (let ((video-slug (plist-get talk :video-slug)) (wiki-captions-dir (expand-file-name "captions" (expand-file-name (plist-get talk :conf-year) emacsconf-directory)))) (delq nil (seq-map (lambda (ext) - (if (file-exists-p - (expand-file-name - (concat video-slug ext) - (if (string-match "\\.vtt$" ext) - wiki-captions-dir - emacsconf-captions-directory))) + (let ((file (expand-file-name + (concat video-slug ext) + (if (string-match "\\.vtt$" ext) + wiki-captions-dir + emacsconf-captions-directory))) + size) + (when (file-exists-p file) + (setq size + (if (> (file-attribute-size (file-attributes file)) 1000000) + (format " (%sB)" (file-size-human-readable (file-attribute-size (file-attributes file)))) + "")) (if (eq (plist-get talk :format) 'wiki) - (format "[Download %s](%s%s)" + (format "[Download %s%s](%s%s)" ext + size (or (plist-get talk :base-url) "") (concat video-slug ext)) - (format "Download %s" - (or (plist-get talk :base-url) "") - (concat video-slug ext) - ext)))) + (format "Download %s%s" + (or (plist-get talk :base-url) "") + (concat video-slug ext) + ext + size))))) extensions)))) +(defun emacsconf-talks-csv () + "Make a CSV of the talks. +Columns are: slug,title,speakers,talk page url,video url,duration,sha." + (interactive) + (require 'org-table) + (require 'compile-media) + (with-temp-file (expand-file-name "talks.csv" emacsconf-public-media-directory) + (let ((results (delq nil + (seq-mapcat + (lambda (o) + (let ((date (format-time-string "%Y-%m-%d" + (plist-get o :start-time) + emacsconf-timezone)) + (main-video (expand-file-name + (concat (plist-get o :video-slug) "--main.webm") + emacsconf-captions-directory)) + (qa-video (expand-file-name + (concat (plist-get o :video-slug) "--answers.webm") + emacsconf-captions-directory)) + (talk-page-url (plist-get o :url)) + (speakers (or (plist-get o :speakers) ""))) + (delq + nil + (list + (list + (concat emacsconf-name " " emacsconf-year) + (plist-get o :slug) + (plist-get o :title) + speakers + talk-page-url + (format "%s%s/%s--main.webm" + emacsconf-media-base-url + (plist-get o :conf-year) + (plist-get o :video-slug)) + date + (format-seconds "%02h:%z%02m:%02s" (/ (compile-media-get-file-duration-ms main-video) 1000)) + (string-trim (shell-command-to-string (concat "sha1sum -b " (shell-quote-argument main-video) " | cut -d ' ' -f 1")))) + (if (plist-get o :qa-public) + (list + (concat emacsconf-name " " emacsconf-year) + (format "%s-qa" (plist-get o :slug)) + (format "Q&A for %s" (plist-get o :title)) + speakers + talk-page-url + (format "%s%s/%s--answers.webm" + emacsconf-media-base-url + (plist-get o :conf-year) + (plist-get o :video-slug)) + date + (format-seconds "%02h:%z%02m:%02s" (/ (compile-media-get-file-duration-ms qa-video) 1000)) + (string-trim (shell-command-to-string (concat "sha1sum -b " (shell-quote-argument qa-video) " | cut -d ' ' -f 1"))) + )))))) + (emacsconf-public-talks (emacsconf-get-talk-info)))))) + (insert (orgtbl-to-csv + (cons '("Conference" "Slug" "Title" "Speakers" "Talk page URL" "Video URL" "Date" "Duration" "SHA") + results) + nil))))) (provide 'emacsconf-publish) diff --git a/emacsconf-subed.el b/emacsconf-subed.el index 899f3a0..efddcb8 100644 --- a/emacsconf-subed.el +++ b/emacsconf-subed.el @@ -99,7 +99,8 @@ (wiki-file (plist-get info :wiki-file-path)) (caption-file (expand-file-name (concat (plist-get info :video-slug) "--main.vtt") emacsconf-captions-directory)) - (chapters (emacsconf-subed-chapters-as-list info))) + (chapters (with-current-buffer (find-file-noselect caption-file) + (subed-subtitle-list)))) (with-temp-file wiki-file (insert (with-current-buffer (find-file-noselect caption-file) @@ -172,48 +173,5 @@ Create it if necessary." (error "Duration %d is less than minimum" (- (subed-subtitle-msecs-stop) (subed-subtitle-msecs-start)))) (or (subed-forward-subtitle-text) (goto-char (point-max))))) -(defun emacsconf-subed-chapters-as-list (info) - (when (file-exists-p (expand-file-name (concat (plist-get info :video-slug) "--main--chapters.vtt") - emacsconf-captions-directory)) - (with-current-buffer (find-file-noselect (expand-file-name (concat (plist-get info :video-slug) "--main--chapters.vtt") - emacsconf-captions-directory)) - (let (result) - (subed-for-each-subtitle (point-min) (point-max) nil - (setq result - (cons - (cons (subed-subtitle-msecs-start) - (subed-subtitle-text)) - result))) - (nreverse result))))) - -(defun emacsconf-subed-chapters-buffer-as-list () - (let (result) - (subed-for-each-subtitle (point-min) (point-max) nil - (setq result - (cons - (list - :text - (subed-subtitle-text) - :start-ms - (subed-subtitle-msecs-start) - :stop-ms - (subed-subtitle-msecs-stop)) - result))) - (nreverse result))) - -(defun emacsconf-subed-chapters-as-description () - (interactive) - (let ((result - (mapconcat - (lambda (o) - (concat (format-seconds "%.2m:%.2s" (/ (plist-get o :start-ms) 1000)) - " " - (plist-get o :text))) - (emacsconf-subed-chapters-buffer-as-list) - "\n"))) - (when (called-interactively-p 'any) - (kill-new result)) - result)) - (provide 'emacsconf-subed) ;;; emacsconf-subed.el ends here diff --git a/emacsconf.el b/emacsconf.el index 357b271..5c5ad60 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -38,6 +38,12 @@ "Directory where the wiki files are." :group 'emacsconf :type 'directory) + + +(defcustom emacsconf-timezone "America/Toronto" "Main timezone." + :group 'emacsconf + :type 'string) + (defcustom emacsconf-timezones '("America/Toronto" "America/Los_Angeles" "UTC" "Europe/Paris" "Europe/Athens" "Asia/Kolkata" "Asia/Singapore" "Asia/Tokyo") "List of timezones." :group 'emacsconf :type '(repeat string)) @@ -263,5 +269,8 @@ string t t))) string)) +(defun emacsconf-public-talks (info) + (seq-filter (lambda (f) (plist-get f :public)) info)) + (provide 'emacsconf) ;;; emacsconf.el ends here -- cgit v1.2.3