如何使用ffmpeg记录在Mac上运行的特定应用程序?

时间:2018-01-02 20:19:21

标签: macos video ffmpeg macos-high-sierra

我刚刚在Mac HighSierra上使用home-brew安装了ffmpeg。我想记录在我的机器上运行的应用程序的内容(视频很好)(而不是我的整个桌面)。所以我试着运行下面的

davea$ ffmpeg -f gdigrab -framerate 25 -i title=DOSBox
ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
  built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.4.1 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma
  libavutil      55. 78.100 / 55. 78.100
  libavcodec     57.107.100 / 57.107.100
  libavformat    57. 83.100 / 57. 83.100
  libavdevice    57. 10.100 / 57. 10.100
  libavfilter     6.107.100 /  6.107.100
  libavresample   3.  7.  0 /  3.  7.  0
  libswscale      4.  8.100 /  4.  8.100
  libswresample   2.  9.100 /  2.  9.100
  libpostproc    54.  7.100 / 54.  7.100
Unknown input format: 'gdigrab'

但正如你所看到的,我得到了这个

Unknown input format: 'gdigrab'

错误。使用ffmpeg在我的计算机上仅为特定应用程序录制视频的正确方法是什么?

编辑:在评论中使用hte建议,我收到了其他错误......

davea$ ffmpeg -f avfoundation -list_devices true -i ""
ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
  built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.4.1 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma
  libavutil      55. 78.100 / 55. 78.100
  libavcodec     57.107.100 / 57.107.100
  libavformat    57. 83.100 / 57. 83.100
  libavdevice    57. 10.100 / 57. 10.100
  libavfilter     6.107.100 /  6.107.100
  libavresample   3.  7.  0 /  3.  7.  0
  libswscale      4.  8.100 /  4.  8.100
  libswresample   2.  9.100 /  2.  9.100
  libpostproc    54.  7.100 / 54.  7.100
[AVFoundation input device @ 0x7fcbc160d0c0] AVFoundation video devices:
[AVFoundation input device @ 0x7fcbc160d0c0] [0] FaceTime HD Camera
[AVFoundation input device @ 0x7fcbc160d0c0] [1] Capture screen 0
[AVFoundation input device @ 0x7fcbc160d0c0] AVFoundation audio devices:
[AVFoundation input device @ 0x7fcbc160d0c0] [0] Built-in Microphone
: Input/output error

2 个答案:

答案 0 :(得分:0)

avfoundation输入设备似乎只能捕获整个桌面,但您可以使用裁剪过滤器仅抓取桌面的特定区域。

-list_devices命令的输出显示两个视频设备:网络摄像头和桌面(名为[1] Capture screen 0)。

以下示例将捕获桌面并忽略音频设备。然后裁剪滤镜将从左侧24像素和顶部180像素的区域制作800x600大小的视频:

ffmpeg -f avfoundation -i "1:none" -vf "crop=800:600:24:180,format=yuv420p" output.mp4

添加了格式过滤器以实现QuickTime兼容性。

答案 1 :(得分:0)

虽然您已经提到ffmpeg,但我只是想让您知道您还可以实现"抓住屏幕的一部分" 而无需使用随即可安装macOS的工具安装任何其他软件 - 即 QuickTime ,Apple不幸称之为" QuickTime播放器" 认为它是事实既可以录制也可以播放。

因此,要开始使用,请按 空间,为 QuickTime 执行" Spotlight搜索" 并开始输入" QuickTime"。一旦猜到你的意思是" QuickTime",点击 Enter / Return

不要转到"文件" 菜单,然后点击"新屏幕录制" 。按红色"记录"按钮"它会让你拖出你想要录制的矩形区域。当你完成后,"停止"按钮位于时钟附近屏幕的右上角。