[PC] Persona 4 Golden Opening Lyrics
- pelvisbass
- Posts: 10
- Joined: Wed Feb 26, 2020 8:53 pm
- Has thanked: 9 times
- Been thanked: 15 times
- Contact:
[PC] Persona 4 Golden Opening Lyrics
Intro
In order to familiarize my self with some of the basic tools I need for FMV modding (the anime cutscenes) I decided to make a quick version of the golden opening with lyrics. I also filtered this opening using vapoursynth as the base FMVs look very blocky and compressed however this results in a higher file size. After this I plan to filter every FMV using vapoursynth in order to get rid of as much noise and blockiness as I can but that might take up to a week as there is a lot of encoding to do.
Download
Instructions

In order to familiarize my self with some of the basic tools I need for FMV modding (the anime cutscenes) I decided to make a quick version of the golden opening with lyrics. I also filtered this opening using vapoursynth as the base FMVs look very blocky and compressed however this results in a higher file size. After this I plan to filter every FMV using vapoursynth in order to get rid of as much noise and blockiness as I can but that might take up to a week as there is a lot of encoding to do.
Download
Instructions
- Download my mod from the link above and the tools from this github
- Extract the folders somewhere convenient to you
- Go to your Persona 4 Golden installation then drag and drop movie00002.pac into Multi Extractor.exe, it should make a folder named movie00002 you will use this soon
- Open up the Pac Editor executable
- Drag and drop p4ctop3_e.usm from my mod into the white box as well as all the files you extracted using Multi Extractor.exe except p4ctop3_e.usm
- All of the text in the white box should now be red now just hit save and choose somewhere to save the new .pac
- After making sure you back up your old .pac drag and drop the newly created one into your persona 4 golden folder and overwrite it
- You should now have lyrics on the opening


-
- Posts: 3
- Joined: Tue Jun 16, 2020 6:07 am
Re: [PC] Persona 4 Golden Opening Lyrics
What encoding settings/application did you use? I've been trying to match the encoding settings of the original file with ffmpeg and vlc with no avail.
- pelvisbass
- Posts: 10
- Joined: Wed Feb 26, 2020 8:53 pm
- Has thanked: 9 times
- Been thanked: 15 times
- Contact:
Re: [PC] Persona 4 Golden Opening Lyrics
I didn't actually try matching the originals but instead tried to improve on it a little bit. I personally used this
It takes mkv file and encodes that into the format this game works with... after that I take the original .wmv file and just copy over the audio tracks as I don't want to encode audio twice. -qscale:v 1 is the big one as from what I can see that is what allows the video to look much better than the originals.
Code: Select all
ffmpeg -i input.mkv -i input2.wmv -map 0:0 -b:v 30000k -vcodec wmv2 -map 1:1 -map 1:2 -acodec copy -shortest -qscale:v 1 out.wmv
-
- Posts: 3
- Joined: Tue Jun 16, 2020 6:07 am
Re: [PC] Persona 4 Golden Opening Lyrics
Ah thanks! I don't plan on using the original audio but I imagine encoding that to the right format can't be too hard. I'll convert my current video into mkv and see if that works.
-
- Posts: 3
- Joined: Tue Jun 16, 2020 6:07 am
Re: [PC] Persona 4 Golden Opening Lyrics
Trying to run the command I get "Stream map '1:2' matches no streams." I'm thinking this is because I'm not using the original.wmv file but a modified one with the same encoding, but I'm not sure.
Re: [PC] Persona 4 Golden Opening Lyrics
Try to re encode the mod and downscale it to 720p and it works well on Vita Version
Thanks for the mod btw

Thanks for the mod btw


Re: [PC] Persona 4 Golden Opening Lyrics
How did you convert the video raw files? (That extracted from usm files)