top of page

Batch Upscale Videos using Gigapixel VideoAI

Recently I discovered the power of Gigapixel VideoAi by Topaz. I use it extensively to upscale my DJI mavic Mini video to 4k and some slow motion video and it does generally an awesome job! It is however very slow to run and I don't want to have to convert each video after the other so I created a small batch script that Queues them. Then I can run the script over nights (even over weekdays) and have all my video upscaled in one step.




Script Creation:


The script is fairly easy to do on Win10.


1-Open a notepad

2-Type:


@ECHO off for %%I IN (%*) DO ( start /wait videosrcmd.exe %%I -w 3840 -h 2160 ) pause


3-Save the file as Upscale4k.bat


Script Usage:


1-Drag and drop all the video files (at once) over the script Upscale4k.bat icon.


2-It will take a while to process all the files, but the result is generally well worth it!


Notes:


1-Obviously, you can change the resolution if needed by editing the -w and -h arguments.


2-The VideoAI installer should already have update the %PATH% to include videosrcmd.exe. If it doesn't, you can always specify the full path in the script as following:


start /wait C:\Program Files\Topaz Labs\Gigapixel AI for Video\videosrcmd.exe %%I -w 3840 -h 2160


3-To stop the script:

Type CTRL+C in the script

Then Kill the gigapixel window.

Tags:

Featured Posts
Recent Posts
Archive
Search By Tags
bottom of page