summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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