0 of 0

File information

Last updated

Original upload

Created by

SiJei

Uploaded by

SiJeiX

Virus scan

Some manually verified files

Tags for this mod

About this mod

Fixed transcoded cutscenes for Devil May Cry HD Collection for Linux and Steam Deck (fix for flipped video and bad audio quality)

Permissions and credits
FOR LINUX AND STEAM DECK USERS ONLY

On Steam Deck and Linux FMV cutscenes are not playing properly - video is vertically flipped and audio quality is bad. This mod contains transcoded and fixed video files for all games in collection.

INSTALLATION

Just extract files into the game's directory.

OPTIONAL SCRIPT

In case your Internet traffic is limited and you prefer to do it yourself - check out optional archive, it contains Linux shell script that will transcode local video files. To run it extract archive, open terminal in a directory containing extracted file and execute command:

sh fix_dmc_cutscenes_script.sh

DOIN' IT MANUALLY

If you want to manually convert files in every directory open terminal in directory that contains files and execute this command:

for fmv in *.wmv; do echo "Transcoding $fmv"; ffmpeg -v quiet -stats -i $fmv -vf vflip ${fmv:0:-4}.mp4; rm -rf $fmv; mv -- ${fmv:0:-4}.mp4 $fmv; done