Add thumbnail to video – PHP & FFmpeg

Thumbnail is basically a preview of video. Every operating system by default add a thumbnail to a video by itself. When you open YouTube, every video you must have see an image along with it’s title. It gives the preview of video and tells what the video is about. Most people use custom images as …

Compress video in bitrate and resolution – PHP & FFmpeg

You can compress the video by bitrate and by resolution in PHP and FFmpeg. You can download FFmpeg from here. Compressing will save you some space in your system. Compress video in bitrate and resolution – PHP & FFmpeg When it comes in compressing the video, there are many options which can be adopted. The …

Add or extract audio from video – PHP & FFmpeg

In this article, we are going to teach you how you can add audio to a video. And also, how you can extract the audio from the video. We will be using PHP and FFmpeg for both purposes. Add audio to video Adding audio to a video will replace the video’s actual audio. You can …

Merge multiple videos in one file – PHP & FFmpeg

Merge or combining multiple short videos in one long file is usually done by some of the softwares available on the internet. Some operating systems provides basic editing softwares for free, for example Windows 10 has built-in video editor in their Windows Media Player. Macintosh has QuickTime player and iMovie which came along with operating …

Split video in multiple parts – PHP & FFmpeg

To split video files in 2 parts or extracting a specific part from a long video is usually done by some of the softwares available on the internet. Some operating systems provides basic editing softwares for free, for example Windows 10 has built-in video editor in their Windows Media Player. Macintosh has QuickTime player and …

Live CRUD with AJAX – PHP

By live CRUD with AJAX, we mean that you will be able to Create, Read, Update, Delete data without having to refresh the page. This tutorial does not have any dependency on jQuery, you can implement it without having to include jQuery in it. We will be using a sample database named classicmodels and it will be …

Crop and save image – PHP

You can crop the image before uploading and save it on your server using PHP. Cropping an image would require a jQuery library called cropper. You can download the cropper library from the link below: Download cropper library Go ahead and download this library. You will also need jQuery for this. All files have also been …