Adding audio to a video file with FFmpeg
Adding an audio file to a video with FFmpeg, this is achieved with mapping. The key to this is mapping. Video files can contain more than just a video and…
Adding an audio file to a video with FFmpeg, this is achieved with mapping. The key to this is mapping. Video files can contain more than just a video and…
Filtering a MySQL SELECT query based on a DateTime being before, after, within or older than is a common need. It can be done a few ways with plenty of…
Depending on a video or audio container it can store various metadata or information like title, description, year, author, episode, album, track etc. Using FFmpeg to add this metadata to…
Occasionally you will get a string that is longer than what you designed for, this gets fixed by printing a set amount from the string and affixing … onto the…
Most of the time a freshly installed server will automatically set its timezone to be locally orientated, this can be easily changed for user preference. Finding your Ubuntu systems time…
Creating an automated system to submit my blog posts to my subreddit using PHP and the Reddit API. The idea is every couple of hours a check will be made…
A class that has inheritance in PHP OOP is one that obtains or gets all the properties and methods from its parent class. This is useful when you need to…
FFmpeg can do a massive amount of things, getting video details can be done with FFmpeg however there is a special offspring from FFmpeg called ffprobe that is dedicated to…
Often cURL in PHP is used to download whole webpages, another great use is downloading and saving images. Using cURL to save images is used over the file_put_content(file_get_contents()) because you…
Geekbench is a well-established multi-platform benchmarking tool that is designed to be easily comparable from processor to processor, test to test. Geekbench tests CPU power, speed and capabilities however it…