Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
"{SteamLibrary} / steamapps / common /Devil May Cry HD Collection /data /dmc3 / Video"
Remove the Spaces, etc. Basically you just need to create a new Text Document inside the "dmc3/Video" Folder with a .sh extension
Paste the Code in.
Mark as Executable
Change to Video Folder
Run Script with ./Flip.sh
Finally, you need to manually rename every video extension back from MP4 to WMV (Or they won't play at all.) I tested the Script and all FMVs work in the correct way.
DON'T PUT THE SCRIPT IN THE ROOT FOLDER
You can message me if you want a Video tutorial or something.
## This Bash Script Flips all FMVs upside down.
## It also converts all WMV to MP4
for FMV in *; do ffmpeg -i $FMV -vf vflip ${FMV:0:-4}.mp4; rm $FMV; done
## chmod +x Flip.sh
## Credits to ProtonDB
Really, if you want to confirm, try GE Proton out, if the videos dont play, its a wine issue, or even potentially an issue of not having a dependency for the player installed.
1. Wine actually has to be able to start the video player properly.
2. The video has to be in a format that wine can play.
The GE build of proton can play significantly more codecs than valves, but if wine can’t open the video player, it won’t matter.
Replacing the videos outright is also not gonna work typically, the video player is expecting a certain type of codec, you typically can’t replace the files outright.
Valves solution is to transcode the videos to a Linux friendly format on top of the originals. But this still relies on the original files being there and wine being able to open the player.