The only time you don't have to use the load command is if it (the dll) exists in the AVISYNTH plug-ins folder.
Using filters in DVD Rebuilder
Collapse
This is a sticky topic.
X
X
-
Originally Posted by jdobbsThe only time you don't have to use the load command is if it (the dll) exists in the AVISYNTH plug-ins folder.
All the dlls I've referred to, including FluxSmooth25, do exist in the Avisynth plug-ins folder. (Sorry, I wasn't clear enough about this.) Hence the reason I didn't bother with the 'Load' command.
(I'll give it another shot tonight, check my setup, etc, & get back to you.)Comment
-
If I was just to leave Undot and fluxsmooth on all the time even for movies that dont need it would it cause a problemComment
-
-
new user.
yesterday i had my first success with DVD-RB v0.96.(great help came from UncasMS)
was with SWIII using CCE encoder.
the dvd source is a little dark for my taste.(ntsc-region 4)
please,i need recommendations to encrease brightness( 5 ~10%) without solarizations in the result.
what filter can i use?Last edited by jeo; 25 Nov 2005, 12:19 AM.still sending greens(you can't see but can feel)
geriatric rock fanComment
-
Use the Tweak filter. It's built in and doesn't require any loads...
You might try this to brighten it a bit:
Tweak(hue=0, sat=1, bright=10, cont=1)Last edited by jdobbs; 25 Nov 2005, 12:25 AM.Comment
-
few screenshots:
vob source:
full picture
Tweak(hue=0,sat=1,bright=6,cont=1)
(little more brightness-thanks jdobbs)
full picture
Tweak(hue=0, sat=1, bright=6, cont=1)
FFT3DFilter(bt=-1,sharpen=0.6)
(great sharp filter)
full picture
.pngs from imageshck don't show the right result as my bmps from vdubmod.
FFT3DFilter is slow as hell(if hell have any speed)
Tweak Plugin
FFT3DFilter
regardsstill sending greens(you can't see but can feel)
geriatric rock fanComment
-
I dont know if any of you has used this filter but I use ONLY this one for my encodes using avisynth + any encoder.
#-----------------------------------------------
LRemoveDust_YV12(17,1)
function LRemoveDust_YV12(clip input, int clmode, int "limit")
{
limit=default(limit,2)
clmode=default(clmode,17)
repmode = 2
clensed = Clense(input)
rep = Repair(clensed, input, mode=repmode)
rg = RemoveGrain(rep, mode=clmode)
return LimitChange(rg, input, limit, LimitU=255 )
}
#------------------------------------------------------
It works wonders on any source and is fast. You need the latest package of removegrain for this, along with the dll's that work on your processor, i.e SSE2/3 or generic. Its a function using a combination of filters.
The plugins used are :
RepairSSE3.dll, RemoveGrainSSE3.dll, SSE3Tools.dll (SSE? depends on your processor)
Copy the function above and save it as an .avsi file using notepad along with the other filters.Last edited by techreactor; 25 Nov 2005, 05:20 PM.Comment
-
That FFT3D is magnificent output. I'd never play with the brightness though.
RegardsLes
Essential progs - [PgcEdit] [VobBlanker] [MenuShrink] [IfoEdit] [Muxman] [DVD Remake Pro] [DVD Rebuilder] [BeSweet] [Media Player Classic] [DVDSubEdit] [ImgBurn]
Media and Burning - [Golden Rules of Burning] [Media quality] [Fix your DMA] [Update your Firmware] [What's my Media ID Code?] [How to test your disc]
[What's bitsetting?] [Burn dual layer disks safely] [Why not to burn with Ner0] [Interpret Ner0's burn errors] [Got bad playback?] [Burner/Media compatibility]
Cool Techniques - [2COOL's guides] [Clean your DVD] [Join a flipper] [Split into 2 DVDs] [Save heaps of Mb] [How to mock strip] [Cool Insert Clips]
Real useful info - [FAQ INDEX] [Compression explained] [Logical Remapping of Enabled Streams] [DVD-Replica] [Fantastic info on DVDs]
You should only use genuine Verbatim or Taiyo Yuden media. Many thanks to www.pcx.com.au for their supply and great service.
Explore the sites and the programs - there's a gold mine of information in them
Comment
Comment