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 …
Read More “Add thumbnail to video – 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 …
Read More “Compress video in bitrate and resolution – 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 …
Read More “Add or extract audio from video – 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 …
Read More “Merge multiple videos in one file – 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 …
Read More “Split video in multiple parts – PHP & FFmpeg”
In this article, we will learn how to redirect the user back to the same page after he has successfully logged-in. We will be using PHP in this tutorial. 3 ways to redirect back to same page after login – PHP You may have seen a lot of websites where you can see it’s content. …
Read More “3 ways to redirect back to same page after login – 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 …
Read More “Live CRUD with AJAX – PHP”
In this tutorial, you will be learning to create and run cron jobs on localhost. You will need XAMPP or WAMP and this tutorial is for Windows OS only. We will be creating a cron job that will insert a new row in database once a day. We will be using Windows Task Scheduler to tell …
Read More “Run cron jobs on localhost”
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 …
Read More “Crop and save image – PHP”
Dynamic pagination is one of the most amazing way to optimize your page load if you have a lot of record in your database. You can see it in a tech giant Google, when you search for something, you will see a list of page numbers at the bottom of page. We will be using a …
Read More “Dynamic Pagination – PHP”