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

问题描述 投票:1回答:2

我刚刚在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在我的计算机上仅为特定应用程序录制视频的正确方法是什么?

编辑:使用评论中的建议,我得到了另一个错误...

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
macos video ffmpeg macos-high-sierra
2个回答
0
投票

虽然你已经提到过ffmpeg,但我只是想让你知道你也可以达到你所说的“抓住屏幕的一部分”的目标,而不需要安装任何其他软件只需使用随即可安装macOS的工具 - 即QuickTime不幸的是,苹果公司称其为“QuickTime播放器”,因为它可以录制和播放。

因此,要开始使用,请按⌘space并开始键入“QuickTime”,对QuickTime执行“Spotlight搜索”。一旦猜到你的意思是“QuickTime”,点击Enter / Return。

没有转到“文件”菜单并单击“新屏幕录制”。按下红色的“记录”按钮,它将让你拖出你想要记录的矩形区域。完成后,屏幕右上角的“停止”按钮会在时钟附近向上移动。


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兼容性。

© www.soinside.com 2019 - 2024. All rights reserved.