FFMPEG 图像叠加视频:崩溃

FFMPEG 图像叠加视频:崩溃

我有一个简单的脚本,可以将一组图像叠加在视频上:

ffmpeg -y -i "basevideo.mov" -loop 1 -i "animation/middle_%2d.png" -filter_complex \
"[1:v]setpts=1.0*PTS[midAnimation]; \
[0:v][midAnimation]overlay=shortest=1[outvideo]" \
-map [outvideo] "out.mov"

当脚本到达某个点时,我收到“过滤时出错”消息(亮红色),然后它挂在最后一帧(我需要按“ctrl-c”几次才能退出)。

这种情况并不是在所有视频上都会发生,但是足以让人烦恼。

我的环境:

ffmpeg version 3.3.3 Copyright (c) 2000-2017 the FFmpeg developers
  built with Apple LLVM version 8.1.0 (clang-802.0.42)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.3.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
  libavutil      55. 58.100 / 55. 58.100
  libavcodec     57. 89.100 / 57. 89.100
  libavformat    57. 71.100 / 57. 71.100
  libavdevice    57.  6.100 / 57.  6.100
  libavfilter     6. 82.100 /  6. 82.100
  libavresample   3.  5.  0 /  3.  5.  0
  libswscale      4.  6.100 /  4.  6.100
  libswresample   2.  7.100 /  2.  7.100
  libpostproc    54.  5.100 / 54.  5.100

相关内容