web-dev-qa-db-ja.com

ffmpegが既存の画像を上書きしたい

Ffmpegでタイムラプス動画を作りたいです。今のところ、次のコマンドでmencoderを使用しています:mencoder mf://*.jpg -mf fps = 12 -nosound -noskip -ovc copy -o Zeitraffer $ begin.avi

Ffmpegでムービーを作成しようとしていますが、ffmpegが既存のスナップショットを上書きしたいようです。メッセージ:

ffmpeg -i *.jpg -vcodec mpeg4 timelapse.avi
ffmpeg version 2.6.2 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (SUSE Linux)
configuration: --shlibdir=/usr/lib64 --prefix=/usr --mandir=/usr /share/man --libdir=/usr/lib64 --enable-shared --disable-static --enable-debug --disable-stripping --extra-cflags='-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g' --enable-pic --optflags='-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g' --enable-gpl --enable-x11grab --enable-version3 --enable-pthreads --datadir=/usr/share/ffmpeg --enable-avfilter --enable-libpulse --enable-libwebp --enable-libvpx --enable-libopus --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libxvid --enable-libx264 --enable-libx265 --enable-libschroedinger --enable-libgsm --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-postproc --enable-libdc1394 --enable-librtmp --enable-libfreetype --enable-avresample --enable-libtwolame --enable-libvo-aacenc --enable-gnutls --enable-libass --enable-frei0r --enable-libcelt --enable-libcdio --enable-ladspa
libavutil      54. 20.100 / 54. 20.100
libavcodec     56. 26.100 / 56. 26.100
libavformat    56. 25.101 / 56. 25.101
libavdevice    56.  4.100 / 56.  4.100
libavfilter     5. 11.102 /  5. 11.102
libavresample   2.  1.  0 /  2.  1.  0
libswscale      3.  1.101 /  3.  1.101
libswresample   1.  1.100 /  1.  1.100
libpostproc    53.  3.100 / 53.  3.100
Input #0, image2, from 'Schedule_20150516-000025.jpg':
Duration: 00:00:00.04, start: 0.000000, bitrate: 7403 kb/s
Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 1280x720 [SAR 1:1 DAR 16:9], 25 tbr, 25 tbn, 25 tbc

ファイル 'Schedule_20150516-000125.jpg'は既に存在します。上書きしますか?[y/N]

私は何が間違っているのですか?そして、なぜffmpegはこのファイルを上書きしたいのですか?

5
Chucrute

image file demuxer に、パターンを glob のように解釈し、パターンの前後に引用符を追加するように指示する必要があります。

ffmpeg -pattern_type glob -i "*.jpg" -c:v libx264 -pix_fmt yuv420p \ 
-movflags +faststart output.mp4
12
llogan

通常、このような使用法では、次の行を使用します。

  mencoder mf://*.jpg -mf w=[width]:h=[height]:fps=[fps]:type=jpg -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o out.avi
0
Toine42