Khyinn
7th January 2014, 14:07
Hi,
First, i want to precise that this is for my own usage.
I want to upscale an anime to 720p. I have RAWs from DVD. I want my encode matches this quality (or better but i don't think it's possible to do better) :
http://puu.sh/6cDgc.jpg
Currently, that's what i have :
http://puu.sh/6cDhQ.jpg
Colors aren't good but this can be easily tweaked with tweak() :) Crop isn't good too but that's not a problem i can't deal with :)
My encode has a lot of "blur", probably the result of the upscale.
Here is my script (probably as bad as my experience...) :
FFMpegSource2("C:\Enco\046.mkv", vtrack = -1, atrack = -1, timecodes="timecodes_file.txt")
ConvertToYV12()
ConvertAudioTo16Bit()
SetMTMode(2)
Tdecimate(CycleR=3, Cycle=5)
AssumeFPS(23.976, true)
clip1=Trim(2663, 16063).crop(0,56,-0,-56).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip2=Trim(16064, 16412).crop(0,0,-0,-112).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip3=Trim(16413, 32920).crop(0,56,-0,-56).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip4=Trim(32921, 32991).crop(0,36,-0,-36).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip1++clip2++clip3++clip4
RemoveGrain()
fft3dfilter()
Deblock()
LSFmod(defaults="slow", strength=200)
DeHalo_alpha_2BD()
return(last)
Here is a 15sec sample to make some tests :
Download 15sec sample (https://mega.co.nz/#!dIh20ZQZ!Dn3hVji1OCcYG6sjH8uYISGMS3lyXfQ5OP-N6VSA2Uo)
Please, can anyone help me improve this ? :)
First, i want to precise that this is for my own usage.
I want to upscale an anime to 720p. I have RAWs from DVD. I want my encode matches this quality (or better but i don't think it's possible to do better) :
http://puu.sh/6cDgc.jpg
Currently, that's what i have :
http://puu.sh/6cDhQ.jpg
Colors aren't good but this can be easily tweaked with tweak() :) Crop isn't good too but that's not a problem i can't deal with :)
My encode has a lot of "blur", probably the result of the upscale.
Here is my script (probably as bad as my experience...) :
FFMpegSource2("C:\Enco\046.mkv", vtrack = -1, atrack = -1, timecodes="timecodes_file.txt")
ConvertToYV12()
ConvertAudioTo16Bit()
SetMTMode(2)
Tdecimate(CycleR=3, Cycle=5)
AssumeFPS(23.976, true)
clip1=Trim(2663, 16063).crop(0,56,-0,-56).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip2=Trim(16064, 16412).crop(0,0,-0,-112).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip3=Trim(16413, 32920).crop(0,56,-0,-56).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip4=Trim(32921, 32991).crop(0,36,-0,-36).nnedi3_rpow2(rfactor=2,cshift="spline36resize",fwidth=1280,fheight=720,ep0=5)
clip1++clip2++clip3++clip4
RemoveGrain()
fft3dfilter()
Deblock()
LSFmod(defaults="slow", strength=200)
DeHalo_alpha_2BD()
return(last)
Here is a 15sec sample to make some tests :
Download 15sec sample (https://mega.co.nz/#!dIh20ZQZ!Dn3hVji1OCcYG6sjH8uYISGMS3lyXfQ5OP-N6VSA2Uo)
Please, can anyone help me improve this ? :)