i have bunch of anime DVD i have to make upscaled rips for a site. i came up with a process that clears up most of the noise and other problems.
but the process take to much time per EP and i am looking into how to automate this as much as i can.
first i use DGindex to the part that is needed from the DVD iso file , then i export it into frames with vitrual dub using avisyth scripts
then i run the frames trough Waifu2xcaffe , which is a program using an algoritem for upscaling and denoising.Code:TFM() TDecimate(Mode=1) McTemporalDenoise(settings="Low") sharpen(0.15)
then i use Megui and with "ImageSource" on the upscaled frames to convert them to MKV file , then i add the sound and the subtitles.
finished , but it takes to much time per EP,
is there a way to do the frames in one go? Rip the frame>run the first script on it > run it trough Waifu2xcaffe >run the last script and turn it into an MKV.
also i can also do about 6000 frames trough Waifu2xcaffe at a time so i have to splint because an ep has like 22,000 frames.
+ Reply to Thread
Results 1 to 8 of 8
-
-
Yes. Learn and use Vapoursynth, which has a direct implementation of Waifu2x. None of that run around.
-
Waifu2X can be used directly in AviSynth as well, although it's absurdly slow. Unless you're convinced it does a better job upscaling (I'm not), I think you'd be better served using NNEDI3_rpow2, like so:
TFM()
TDecimate(Mode=1)
McTemporalDenoise(settings="Low")
sharpen(0.15)
nnedi3_rpow2(rfactor=2,cshift="lanczosresize",fwid th=1280,fheight=720)
That's one way to speed up the process. A lot. -
-
Waifu2xcaffe is the GPU version that OP is talking about which I'm going to guess is much faster.
-
yes the gpu version is much faster and since time is importent here its crucial, havent checked Vapoursynth yet as was suggested ,
-
The standard approach would be to check out the command-line options for these programs and then combine them in a shell script, if possible.
Similar Threads
-
How to cut and shorten a movie automatically - perhaps in iMovie?
By panchen in forum Newbie / General discussionsReplies: 1Last Post: 12th Sep 2017, 09:57 -
Shorten/eliminate input overlay on Insignia 1080p tv?
By brassplyer in forum DVB / IPTVReplies: 2Last Post: 10th Aug 2017, 15:01 -
[Vegas] How to automate pitch?
By rocco123 in forum EditingReplies: 2Last Post: 9th Jul 2017, 20:33 -
Any way to automate a number off conversions?
By StumpedTechy in forum Newbie / General discussionsReplies: 1Last Post: 14th Jun 2015, 14:10 -
how do i automate a website
By RBCC in forum Video Streaming DownloadingReplies: 8Last Post: 8th Nov 2014, 17:03