Jika kualitas pecah
ffmpeg -i input.mkv output.gif
Jika tak mau kualitas pecah, maximum quality
Jika Anda ingin mengurangi dimensi video, tambahkan filter penskalaan:
Other GIF stuff I wrote: lossy GIF encoder and GIF to video converter (which you should really do). File gifski
ffmpeg combine two videos
Thanks
ffmpeg -i input.mkv output.gif
Jika tak mau kualitas pecah, maximum quality
ffmpeg -i video.mp4 frame%04d.png
gifski -o clip.gif frame*.pngJika Anda ingin mengurangi dimensi video, tambahkan filter penskalaan:
ffmpeg -i video.mp4 -vf scale=400:240 frame%04d.pngffmpeg -i video.mp4 -vf fps=12 frame%04d.png-vf scale=400:240,fps=12 Other GIF stuff I wrote: lossy GIF encoder and GIF to video converter (which you should really do). File gifski
ffmpeg combine two videos
ffmpeg -i one.mkv -i two.mkv -i three.mkv \
  -filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] concat=n=3:v=1:a=1 [v] [a]" \
  -map "[v]" -map "[a]" output.mkvThanks
 

 
