The use of video in digital life is increasing exponentially day by day. I prepared a document explaining how you can easily find answers to video solutions/problems that you will need in daily life with FFmpeg library. I show you which commands to run for video solutions you will need with about 20 different scenarios in the file.
Download FFmpeg to your computer for Windows => https://github.com/BtbN/FFmpeg-Builds/releases for Mac Os => https://evermeet.cx/ffmpeg/ After downloading from .cx/ffmpeg/ffmpeg-105012-gbb813ccb45.zip addresses, you can run ffmpeg as arguments by entering bin folder via terminal.
ffmpeg -i source.avi output.mp4
ffmpeg -i source.mov output.mp4
ffmpeg -i source.mp4 -framerate 30 output30fps.mp4
It will be as long as the video or audio, whichever is shorter.
ffmpeg -i source.mp4 -i sound.mp3 -vcodec copy -map 0:v -map 1:a -map 1:a -shortest output.mp4
ffmpeg -i source.mp4 -t 3 output3seconds.mp4
or
ffmpeg -i source.mp4 -t 00:00:03 output3seconds.mp4
Getting next 3 seconds starting from 3 seconds
ffmpeg -i source.mp4 -ss 3 -t 3 source3seconds.mp4
ffmpeg -i source.mp4 -ss 3 output3seconds.mp4
ffmpeg -i source.mp4 -ss 00:00:03 output3seconds.mp4
ffmpeg -i source.mp4 -vf "fps=10,scale=320:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 output.gif
ffmpeg -i source.mp4 -ss 1 -t2 -vf "fps=10,scale=320:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 tar.gif
ffmpeg -i source1.mp4 -i source2.mp4 -y -filter_complex "[0:v][1:v] concat=n=2:v=1:[v]" -map "[v]" output.mp4
ffmpeg -i source1.mp4 -i source2.mp4 -y -filter_complex "[0:v:0][0:a:0][1:v:0][1:a:0] concat=n=2:v=1:a=1 [v] [a]" -map "[a]" -map "[v]" output.mp4
ffmpeg -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4
ffmpeg -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4
ffmpeg -i source.mp4 "%04d.png"
ffmpeg -i wm.mp4 -ss 00:00:01.23 -vframes 1 -q:v 2 output.jpg
ffmpeg -i wm.mp4 -r 1 -f image2 screenshot-%03d.jpg
ffmpeg -i sound1.wav -i sound2.wav -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[out]" -map "[out]" soundconcat.wav
ffmpeg -i source.mp4 output.mp3
ffmpeg -i source.mp4 -c copy -an sessiz.mp4
ffmpeg -f concat -i filelist.txt -i audio.mp3 -c:a copy output.mp4
filelist.txt sample file
a1.jpg a2.jpg a3.jpg
ffmpeg -i source.mp4 -filter:v "drawtext=enable='between(t,0,2)':fontsize=30:fontfile=font.otf:fontcolor=yellow:text='my text':x = (w - text_w) / 2:y = (h - text_h - line_h) / 2" output.mp4
between(t,0,2) 0-2 seconds
center the screen x = (w - text_w) / 2:y = (h - text_h - line_h) / 2
You can make it output in the position you want by giving x and y values.
ffmpeg -i input.mp4 -c copy -map 0 -segment_time 4 -f segment -segment_list list.txt output_video%03d.mp4
ffmpeg -y -v error -i list.txt -map 0 -c copy output.mp4