Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#221 | Link | |
Registered User
Join Date: Jul 2012
Location: Nottingham
Posts: 14
|
Quote:
this is my script i've tried with ### cores:4 at the end of script, can you clear this to me am i ordering it correct or not , thanks. Code:
mp_pipeline(""" setmemorymax(2048) ### platform:win32 ### dll:avisynth.dll LoadPlugin("C:\Program Files (x86)\MeGUI-2836-32\tools\lsmash\LSMASHSource.dll") LWLibavVideoSource("C:\Users\Macintosh\Videos\B.mkv.lwi") ### prefetch:512,128 ### ### ### platform:win64 ### dll:avisynth.dll #16-bit process SMDegrain(lsb=true, lsb_out=true, slices=true, mode=6) ### prefetch:256,64 ### ### Gradfun3(lsb_in=true, lsb=true, mode=6) s16 = last s8 = ditherpost(mode=-1, ampn=0.5) ### export clip: s16, s8 ### prefetch:128,32 ### ### ### platform:win32 ### dll:avisynth.dll #8-bit process o = s8 mb1 = o.minblur(1) mb2 = o.mt_adddiff(mt_makediff(mb1,mb1.removegrain(4))) ss = seesaw(o, mb2, ssx=1.30, ssy=1.30) rep = ss.repair(o,1,1,1,false) mtl = mt_lutxy (o, rep, expr="x y < y 1 - x y > y 1 + y ? ?", y=3, u=3, v=3) bdh = BlindDeHalo3(mtl,rx=3.0, ry=3.0, strength=150, lodamp=25.0, hidamp=25.0, sharpness=100, interlaced=false) fld = FastLineDarkenMOD4(bdh,strength=0, luma_cap=255, threshold=0, thinning=32) fld1 = FastLineDarkenMOD4(fld,strength=32, luma_cap=255, threshold=0, thinning=0).mergechroma(fld) ### export clip: s16, fld1 ### prefetch:64,16 ### ### ### platform:win64 ### dll:avisynth.dll # mixing 8-bit & 16bit process s8tos16 = dither_convert_8_to_16(fld1) dlf = s16.Dither_limit_dif16 (s8tos16, thr=1.0, elast=2.0) ls16 = LinearResize(dlf, w=1280, h=544, lsb_in=true, lsb_out=true, mode=6, src_width=1280, src_height=544) sharplimit16(s8tos16,ls16,str=1.00,tv_range=true) ditherpost(stacked=true, mode=0) ### prefetch:32,8 ### cores: 4 ### ### """) thanks a ton ,your efforts are very much appreciated. |
|
![]() |
![]() |
![]() |
#222 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 1,074
|
it's just the old
Code:
### lock threads to cores mp_pipeline(""" ### platform 1st block here ### lock threads to cores 1 ### ### ### platform 2nd block here ### lock threads to cores 2 ### ### """) and so, and ofc you can use another threads/cores as you like Regarding 8-bit process Question, it's off topic but anyway seesaw need denoised clip in 2nd clip input, o.mt_adddiff(mt_makediff(mb1,mb1.removegrain(4))) give sharp noisily output aside from that why you still use lsb not the native clean and fast HBD in avs+?
__________________
My Avisynth Stuff Last edited by real.finder; 21st January 2019 at 00:11. |
![]() |
![]() |
![]() |
#223 | Link | |
Registered User
Join Date: Jul 2012
Location: Nottingham
Posts: 14
|
Quote:
Code:
mp_pipeline(""" ### platform:win32 ### dll:avisynth.dll Setmemorymax(1536) DGDecode_mpeg2source("C:\Users\Kalik\Videos\VTS.d2v", cpu=4, info=3) ColorMatrix(hints=true, threads=0) crop(2, 66, 0, -66) ### prefetch:128,32 ### lock threads to cores: 2 ### ### ### platform:win64 ### dll:avisynth.dll setmemorymax(2048) SMDegrain(Tr=3) ### prefetch:64,16 ### lock threads to cores: 2 ### ### """) Code:
mp_pipeline(""" ### platform:win32 ### dll:avisynth.dll Setmemorymax(1536) DGDecode_mpeg2source("C:\Users\Kalik\Videos\VTS.d2v", cpu=4, info=3) ColorMatrix(hints=true, threads=0) crop(2, 66, 0, -66) ### prefetch:128,32 ### lock threads to cores 2 ### ### ### platform:win64 ### dll:avisynth.dll setmemorymax(2048) SMDegrain(Tr=3) ### prefetch:64,16 ### lock threads to cores 2 ### ### """) Please can you correct this if u have some free time , i've core-i9 7940x 14cores/28threads only thing where i get confused ### lock threads to cores , do i have to type cores number or threads number? thanks for your precious work i really like mp_pipeline and i use it every time i encode any clip. Code:
mp_pipeline(""" ### platform:win32 ### dll:avisynth.dll Setmemorymax(1536) DGDecode_mpeg2source("C:\Users\Kalik\Videos\VTS.d2v", cpu=4, info=3) ColorMatrix(hints=true, threads=0) crop(2, 66, 0, -66) ### prefetch:128,32 ### lock threads to cores 14 ### ### ### platform:win64 ### dll:avisynth.dll setmemorymax(2048) SMDegrain(Tr=3) ### prefetch:64,16 ### lock threads to cores 14 ### ### """) |
|
![]() |
![]() |
![]() |
#224 | Link | ||||
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 1,074
|
from the old read me of mpp
Quote:
Quote:
![]() the old mpp as the read me said, does it automatically I think, maybe even in the new one still does that if not specified by user and Regarding Quote:
Quote:
__________________
My Avisynth Stuff Last edited by real.finder; 7th February 2019 at 07:03. |
||||
![]() |
![]() |
![]() |
#225 | Link | |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 1,074
|
Quote:
__________________
My Avisynth Stuff |
|
![]() |
![]() |
![]() |
#226 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 1,074
|
SMDegrain update
new divide parameter (Dogway) and some edits for avs+ and avs neo cases and some others changes --- there are many of my scripts already use some method for avs+ detection since years, but unfortunately it not work with avs neo so updates will come soon for those, and from now on you will need SMDegrain.avsi more than ever since it have the IsAvsNeo(), IsAvsPlus() and AvsPlusVersionNumber() functions
__________________
My Avisynth Stuff Last edited by real.finder; Yesterday at 08:35. |
![]() |
![]() |
![]() |
Tags |
avisynth, avs, avs script, avs+, mod |
Thread Tools | Search this Thread |
Display Modes | |
|
|