길이 가 긴 동영상이 있습니다 5s
. 최종 영상은 60s
길어야 합니다. 결과 비디오는 "핑퐁" 루프여야 합니다. 즉, 60년대에 도달할 때까지 5s가 앞뒤로 재생되어야 함을 의미합니다.
ffmpeg
누군가 이것을 수행하는 마법을 알고 있습니까 ?
내 ffmpeg 버전:
ffmpeg version 3.0.2 Copyright (c) 2000-2016 the FFmpeg developers
built with Apple LLVM version 7.3.0 (clang-703.0.29)
configuration: --prefix=/usr/local/Cellar/ffmpeg/3.0.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libxvid --enable-vda
libavutil 55. 17.103 / 55. 17.103
libavcodec 57. 24.102 / 57. 24.102
libavformat 57. 25.100 / 57. 25.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 31.100 / 6. 31.100
libavresample 3. 0. 0 / 3. 0. 0
libswscale 4. 0.100 / 4. 0.100
libswresample 2. 0.101 / 2. 0.101
libpostproc 54. 0.100 / 54. 0.100
답변1
사용
ffmpeg -i input.mp4 \
-filter_complex "[0]reverse[r];[0][r]concat,loop=5:250,setpts=N/25/TB" output.mp4
에서 loop=5:250
는 5
루프 수이고 250
는 입니다 frame rate x double length of clip
. 프레임 드랍을 방지하기 위해 적용 setpts
되며, 값은 25
클립의 프레임 속도로 대체되어야 합니다.