emacs插件(6)——录屏 gif-screencast

一、参考

emacs系列文章目录——更新ing

神器:EMACS GIF屏幕录制

emacs-gif-screencast

二、依赖安装(MacOS)

2.1 安装imagemagick

brew install imagemagick

或者

tar包安装

出现问题:

(1)依赖版本问题

emacs插件(6)——录屏 gif-screencast_第1张图片

我的解决方式是重新安装brew,详见重新安装brew

注:我选择的是科大源

image.png

2.2 安装 ffmpeg

brew install ffmpeg

2.3 安装 gifsicle

brew install gifsicle

三、配置使用

3.1 配置 init.el

image.png

(with-eval-after-load 'gif-screencast
  (setq gif-screencast-args '("-x")) ;; To shut up the shutter sound of `screencapture' (see `gif-screencast-command').
  (setq gif-screencast-cropping-program "mogrify") ;; Optional: Used to crop the capture to the Emacs frame.
  (setq gif-screencast-capture-format "ppm")) ;; Optional: Required to crop captured images.

3.2 常用的命令

命令 说明
M-x gif-screencast 开始录制
M-x gif-screencast-toggle-pause 暂停录制
M-x gif-screencast-stop 停止录制

注意:默认的保存路径是 ~/Videos/emacs 

你可能感兴趣的:(emacs)