Sample code that shows how to make the popular game: Rock Paper Scissors. Make your choice by clicking on the appropriate icon and it will show who wins - you or the computer. This code was created during the shooting of the YouTube video, so it has not been tested for production purposes.

Before we begin, you need to install ffmpeg, if you haven't already. You can install ffmpeg as described in this article.

This is sample code that resizes all selected image files to 3000 pixels horizontally while maintaining the ratio.

@echo off
setlocal enabledelayedexpansion

FOR %%i IN (%*) DO (
	ffmpeg -i...

Step 1: Download ffmpeg for Windows from ffmpeg.org website or from here.

Step 2: Extract downloaded archive by any file archiver of your choice.

Step 3: Rename extracted folder to "ffmpeg" and move it to "C:\Program Files".

Step 4: Add ffmpeg bin folder to Windows environment variables by one of these two...

This is a small code to serve as an example of how to sort rows in an html table by a given column. The code is not intended to suit every situation, but only to provide the basis for this type of sorting. This code was created during the shooting of the YouTube video, so it has not been tested for production...