Many of the games Remix works with have highly compressed video files in the form of Bink compression. I have trained a custom AI restoration model that allows you to restore .bik videos for your game, and this guide will walk you through using it.
Bink Setup
First things first, we need to convert those .bik files to a usable format for processing.
- Locate your game's .bik files. Make sure the drive has at least 30 GB of space
- Download this program and place it in the folder.
- Double click the .exe
- It will automatically re-encode the .bik files to a lossless format (FFV1) and put them in a new subdirectory called
ffv1_converted
- Now you can move onto setting up Vapourkit!
Vapourkit Setup
Vapourkit works on any modern GPU, but an Nvidia GPU is preferred.
- Download Vapourkit (It's free, just enter $0)
- Download the DeBink model here
- Open Vapourkit, and go through the setup process
- Configure based on your GPU:
-
If you have an Nvidia GPU:
- Click
DirectMLin the top left if it is blue. Make sure it's gray.
- Click
-
If you have an AMD or Intel GPU:
- Make sure
DirectMLin the top left of the GUI is blue. If it isn't, click it.
- Make sure
- On the right side under Filters, Press
Add Filter, thenAI Model - Press
Import Model - In the top left of the window, click
Browse Fileand select the DeBink model you downloaded - Set the following options:
- Model Type:
TSPAN - Shape Mode:
Dynamic - Precision:
FP32 - If you have an Nvidia GPU, paste this into the text area (overwriting the existing text):
--minShapes=input:1x15x100x100 --optShapes=input:1x15x720x1280 --maxShapes=input:1x15x1080x1920 --saveEngine=OUTPUT_PATH --builderOptimizationLevel=5 --useCudaGraph --tacticSources=+CUDNN,-CUBLAS,-CUBLAS_LT
- Press
Import Model
After that's completed, download this template and load it by pressing Open in the top right
- This will automatically choose all of the right settings for you.
Then load and process your videos!
After this you will have your restored video!
Add it into the game
Some games (depending on their implementation of Bink) can handle higher bitrate videos. Others cannot. You won't really know if your game can do this until you try.
To re-encode your video in Bink for the game (high quality):
- Download RAD Video Tools: https://www.radgametools.com/bnkdown.htm
- Install and open it.
- Select your restored video file
- Press
Bink It! - In this window, press
Binkon the right - It should provide a good, high quality output
- Then, all you should have to do is move this new .bik file to the game folder where the old file was! Make sure the name is the same as the old one too. Run the game and see if it works 💚