У меня есть куча (около 400) файлов, названных так:
img-152800.png
img-153101.png
img-153249.png
img-153303.png
img-153317.png
img-153331.png
И я пытаюсь использовать ffmpeg
чтобы превратить их в замедленное видео:
ffmpeg -r 24 -pattern_type glob -i '*.png' -c:v copy output.avi
Это создает output.avi
, который может быть загружен VLC, но изображение остается. Вывод вышеуказанной команды включает в себя множество строк:
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 12, current: 12; changing to 13. This may result in incorrect timestamps in the output file.
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 13, current: 13; changing to 14. This may result in incorrect timestamps in the output file.
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 14, current: 14; changing to 15. This may result in incorrect timestamps in the output file.
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 15, current: 15; changing to 16. This may result in incorrect timestamps in the output file.
...
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 429, current: 413; changing to 430. This may result in incorrect timestamps in the output file.
[avi @ 0x557963c8ce20] Non-monotonous DTS in output stream 0:0; previous: 430, current: 414; changing to 431. This may result in incorrect timestamps in the output file.
Я нашел несколько других ответов для похожих проблем со звуком, но в этих случаях пользователь пытается объединить видео. Насколько я понимаю, из-за аргумента -r 24
ffmpeg
будет просто помещать фрейм каждые 24 секунды.
Я на Ubuntu 17.04 с:
$ ffmpeg
ffmpeg version 3.2.4-1build2 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 6.3.0 (Ubuntu 6.3.0-8ubuntu1) 20170221
configuration: --prefix=/usr --extra-version=1build2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libebur128 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 34.101 / 55. 34.101
libavcodec 57. 64.101 / 57. 64.101
libavformat 57. 56.101 / 57. 56.101
libavdevice 57. 1.100 / 57. 1.100
libavfilter 6. 65.100 / 6. 65.100
libavresample 3. 1. 0 / 3. 1. 0
libswscale 4. 2.100 / 4. 2.100
libswresample 2. 3.100 / 2. 3.100
libpostproc 54. 1.100 / 54. 1.100
Hyper fast Audio and Video encoder