S
satsuki
Guest
I added the links in the first post.
No, .iro's only run during the game, period, must be activated, configured and set to on or off.Hello. First time posting. I'm a bit confused as to how to install these mods. When I import them or place the iros in mods, 7th Heaven folder, I don't see any difference. They are active and are in the proper load order. But when I unpack each iro and then place the folders in the textures folder of 7th heaven, I see the mods working. When the iros are imported, shouldn't 7th heaven automatically process them and place them in the textures folder. It's always empty when I import the iro and place them in the mods folder. Which is the correct way? Manually by unpacking each iro or importing them through 7th Heaven and then put them in the correct order? Or do you do both. Thanks for any assistance.
Hmm, really odd issue I wasn't expecting. Your field's .iro breaks everytime I try to unpack it, and only unpacks about 1/3 of the total before stopping altogether, very strange..I added the links in the first post.
There is a sample image in both 7th heaven IRO's, that's the best quick way to have a comparison.Hello !
Thx for sharing your work, i have a question, i'm using avalanche arisen for battle texture and remako hd for field texture, what is the difference between thoose one and yours?
Also do you have an iro for a battle model ennemies ? i use the one who figure in 7th heaven but it looks older
Realy complex processing with at least 4 or 5 tools, some home made and witch only work in my computer environment (with dependcies, specific cpu and gpu ...)or can you explain how you upscale the video, than i can make this 2 videos.
Try virtualdub2 it's doing this in an easy way, or go fro avisynth (thats the way i edit my video but not realy easy to handle)how did you edit the Video
Nice. Yeah, I'm still blown away by the work you've done on the videos, I even dropped my AC Blu-Ray bits I'd added, just because your work was so impressive.Realy complex processing with at least 4 or 5 tools, some home made and witch only work in my computer environment (with dependcies, specific cpu and gpu ...)
Try virtualdub2 it's doing this in an easy way, or go fro avisynth (thats the way i edit my video but not realy easy to handle)
Thank youRealy complex processing with at least 4 or 5 tools, some home made and witch only work in my computer environment (with dependcies, specific cpu and gpu ...)
Try virtualdub2 it's doing this in an easy way, or go fro avisynth (thats the way i edit my video but not realy easy to handle)
Upscaling videos really is fairly straight forward.or can you explain how you upscale the video, than i can make this 2 videos.
I can´t find anything how this work.
I may do this as I just got an FMV in French and I can't translate, so I may have to get this down..Upscaling videos really is fairly straight forward.
Use ffmpeg to split the individual frames from a video
Optionally/depending on the source: remove compression artefacts with the batch method of your choice; Use ESRGAN/gigapixel to scale
Use ffmpeg to recombine audio and images.
Its very simple with ffmpeg:
ffmpeg -i video.video $filename%03d.png -hide_banner (splitting)
ESRGAN/gigapixel
ffmpeg -framerate 30(or whatever you want) -i '%3d.png' -b:v 6393K video.mp4 (recombining to video)
ffmpeg -i video.mp4 -i audio.audio -shortest -c:v copy videoplusaudio.mp4 (adding audio)
Theres an all in one script for esrgan video scaling too but its alot slower and limits your options to remove compression unless your have a proper interpolated or trained model that can handle it and still give you statisfactory results on the scaling itself. Like ALOT slower. Ubearably slow!
But if you prefer that:
https://pastebin.com/EFghprz7