summaryrefslogtreecommitdiffstats
path: root/emacsconf-stream.el
diff options
context:
space:
mode:
authorEmacsConf <emacsconf-org@gnu.org>2022-11-02 06:20:16 -0700
committerEmacsConf <emacsconf-org@gnu.org>2022-11-02 06:20:16 -0700
commit440fcc403b74a9c4f6bf66e0997dbc8408e1ada2 (patch)
treeb623bf9606cc54f8797799f85fe39e03d47352b0 /emacsconf-stream.el
parente10ab93db435c18f024c2c30d4939aee18f469c6 (diff)
downloademacsconf-el-440fcc403b74a9c4f6bf66e0997dbc8408e1ada2.tar.xz
emacsconf-el-440fcc403b74a9c4f6bf66e0997dbc8408e1ada2.zip
omg playing actually works
Diffstat (limited to 'emacsconf-stream.el')
-rw-r--r--emacsconf-stream.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/emacsconf-stream.el b/emacsconf-stream.el
index 20704cb..7fb504c 100644
--- a/emacsconf-stream.el
+++ b/emacsconf-stream.el
@@ -112,9 +112,8 @@ Final files should be stored in /data/emacsconf/stream/YEAR/video-slug--main.web
(defun emacsconf-stream-play-video (talk)
(interactive (list (emacsconf-complete-talk-info)))
(let ((default-directory (emacsconf-stream-track-login talk)))
- (start-process (concat "mpv-" (plist-get talk :slug))
- "test"
- "~/bin/track-mpv" (emacsconf-stream-get-filename talk))))
+ (shell-command (concat "~/bin/track-mpv "
+ (shell-quote-argument (emacsconf-stream-get-filename talk))))))
(provide 'emacsconf-stream)
;;; emacsconf-stream.el ends here