Overlay frame number on video with FFmpeg
Watermarking a video with the current frame number using FFmpeg. This method involves using the video filter option with the frame_num. For this, I had Arial.ttf sitting in the root…
Watermarking a video with the current frame number using FFmpeg. This method involves using the video filter option with the frame_num. For this, I had Arial.ttf sitting in the root…
Converting a large GIF image file to MP4 video is a modern approach, The end result file size will be smaller for no noticeable quality loss. It will then also…
Creating video segments from a large video can easily be achieved with FFMpeg, the process is fully automated complete with sequential file naming. Cutting a video into 5-minute segments can…
Changing a videos frame rate can be easily done with FFmpeg. From the official FFmpeg documentation to change frame rate -filter:v fps=fps=25 is required. If inputvideo.mp4 was 60fps and I…
Scaling video with FFmpeg can be done with defined width and height like: ffmpeg -i input.mp4 -vf scale=1920×1080 output_1080p.mp4 Assuming that my video is 16:9 ratio like 1280×720. However if…
A codec is the logic to encoding or decoding a media stream, there are many different types with popular ones being H.264, HEVC (H.265) and MPEG-4. Codecs are different to…
Here is a method to live stream a mp4 video file to YouTube with FFmpeg. There are many configuration options but here is what i found works best. Read the…
To set a bitrate for a video encode in FFmpeg use -b:v which means bitrate for video, then specify the bitrate value. This can be k for kBits or m…
Something different this time, testing with a faster CPU that has less cores. Is having more cores or faster cores an obvious difference for FFmpeg video encoding? Last time the…
Turning potentially ruined video footage into something very much useable, like magic the dark video is back to normal, vibrant with a little bit of extra noise. I had underxposed…