
Here is a quick guide how to convert your MP4 films to a format that works with in-game TVs
Hello. I've been really enjoying watching full, period accurate films on the TVs while I work around the shop and I thought some less tech inclined people might appreciate a quick guide on how to achieve this. I've typed most of this for someone else already so might as well post it, I guess. This method should work for other input video formats but I have not tested it.
I've been using the ffmpeg CLI tool and it seems to work fine.
Step 1: If you don't have it open a terminal window (Windows key, type term, hit enter) and type in winget install ffmpeg.
Step 2: Go to the movie folder in Retro Rewind (.\Steam\steamapps\common\RetroRewind\RetroRewind\Content\Movies\VHS\Public) drop in your full film, rename RR_Channel_Public.mp4 to something different, then open another terminal or PowerShell in that folder (you can shift + rick click anywhere in the folder and select "Open PowerShell window here").
Step 3: Conversion time. The command I use to convert films to a format the game accepts:
ffmpeg -i .\input.mp4 -vf "scale=514:514:force_original_aspect_ratio=decrease,pad=514:514:(ow-iw)/2:(oh-ih)/2" -c:v libx264 -c:a aac -af "volume=2.0" RR_Channel_Public.mp4
Note the input.mp4 arguement might have to be different. Also -af "volume=2.0" increases the volume of the output video by 200%: I found the films are too quite in game and this helps me hear them as I move away from the TV. Modify or remove that arguement to taste.
That's it. If you exit out to the main menu and load your save back the movies should work.
This method works in multiple directories underneath Content/Movies/VHS, but not every single one. Right now I have a working movie in Public, Police, and Scifi folders (the output filenames need to be different).