Announcement

Collapse
No announcement yet.

Using filters in DVD Rebuilder

Collapse
This is a sticky topic.
X
X
 
  • Time
  • Show
Clear All
new posts
  • techreactor
    Banned
    • Jul 2005
    • 1309

    #46
    Originally Posted by techreactor
    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.
    Ah! and I forgot to mention you dont need to use any other filters along with this and I mean ANY.

    "One Script to rule them all, One Script to find them, One Script to bring them all and in the darkness enlighten our DVD's"

    Comment

    • ElBoricua433
      Super Member
      Super Member
      • Apr 2005
      • 248

      #47
      I have to type all that?

      Comment

      • jeo
        Digital Video Expert
        Digital Video Expert
        • Feb 2004
        • 745

        #48
        Originally Posted by ElBoricua433
        I have to type all that?
        you can copy and paste all inside this lines: #----------

        techreactor
        i have 2 questions:
        I use ONLY this one..
        1) if the filter "remove" something, you use it for clean sources too?

        2) i never understood what means "clip" for more than i read in the faqs inside avisynth page.i have only to use like is wroten here?
        (clip input, int clmode, int "limit")

        thanks
        still sending greens(you can't see but can feel)

        geriatric rock fan

        Comment

        • jeo
          Digital Video Expert
          Digital Video Expert
          • Feb 2004
          • 745

          #49
          Originally Posted by blutach
          That FFT3D is magnificent output. I'd never play with the brightness though.

          Regards
          yes blutach,
          FFT3DFilter is really cool but very slow:

          this is the bad side.

          without FFT3DFilter run at ~1.455 (duron 1800 512mbRam)

          regards
          still sending greens(you can't see but can feel)

          geriatric rock fan

          Comment

          • laserfan
            Member
            Member
            • Mar 2005
            • 75

            #50
            Originally Posted by techreactor
            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) ...]

            It works wonders on any source and is fast...
            I tried this, and while it worked just fine, and was indeed fast, it made the flesh-and-blood characters on Quiz Show all look like "Howdy Doody".

            Wondering if anyone here has tried the iip Integrated Image Processor with DVD-RB? I've got a couple of ugly DVDs I want to try it with.

            Comment

            • jeo
              Digital Video Expert
              Digital Video Expert
              • Feb 2004
              • 745

              #51
              Originally Posted by techreactor
              #-----------------------------------------------
              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 )

              }
              #------------------------------------------------------

              Ah! and I forgot to mention you dont need to use any other filters along with this and I mean ANY.

              "One Script to rule them all, One Script to find them, One Script to bring them all and in the darkness enlighten our DVD's"
              tech,
              saving as ?.avs is not working and as an .avsi too.
              how i call this script to work?

              help please and thanks in advance.
              still sending greens(you can't see but can feel)

              geriatric rock fan

              Comment

              • laserfan
                Member
                Member
                • Mar 2005
                • 75

                #52
                Originally Posted by jeo
                how i call this script to work?
                Just copy-and-paste it into Rebuilder's Filter Editor window, and make sure the referenced dlls are in your AviSynth plug-ins folder. As I said it worked for me, but the effect was awful on the DVD I tried.

                Comment

                • jeo
                  Digital Video Expert
                  Digital Video Expert
                  • Feb 2004
                  • 745

                  #53
                  all right but with some details:
                  works if you're using the old version of removegrain: http://www.avisynth.org/warpenterpri...l_20050501.zip
                  because with the newest: http://home.arcor.de/kassandro/Remov...emoveGrain.rar
                  don't have any SSETools.dll(sse2-sse3 or s) in the package and the script don't work.
                  for this reason i call for your help,to use the new removegrain version need changes in the script.

                  thanks
                  still sending greens(you can't see but can feel)

                  geriatric rock fan

                  Comment

                  • techreactor
                    Banned
                    • Jul 2005
                    • 1309

                    #54
                    Originally Posted by jeo
                    you can copy and paste all inside this lines: #----------

                    techreactor
                    i have 2 questions:
                    1) if the filter "remove" something, you use it for clean sources too?

                    2) i never understood what means "clip" for more than i read in the faqs inside avisynth page.i have only to use like is wroten here?
                    (clip input, int clmode, int "limit")

                    thanks
                    Sorry guys I almost forgot to visit this forum, I 'll answer now......

                    You can use it for any sources, I have tried with DVD and xvid sources with excellent results.

                    Its a function which calls many filters from it. yes, use it exactly like i posted.

                    Comment

                    • techreactor
                      Banned
                      • Jul 2005
                      • 1309

                      #55
                      Originally Posted by laserfan
                      I tried this, and while it worked just fine, and was indeed fast, it made the flesh-and-blood characters on Quiz Show all look like "Howdy Doody".

                      Wondering if anyone here has tried the iip Integrated Image Processor with DVD-RB? I've got a couple of ugly DVDs I want to try it with.
                      Remove the ",limitU=255" and see the results thats for the max limit to process the chroma in the image.

                      Are you using any other image processing filter with this, if yes, dont!!!
                      Last edited by techreactor; 8 Dec 2005, 04:06 PM.

                      Comment

                      • techreactor
                        Banned
                        • Jul 2005
                        • 1309

                        #56
                        Originally Posted by jeo
                        tech,
                        saving as ?.avs is not working and as an .avsi too.
                        how i call this script to work?

                        help please and thanks in advance.
                        You will have to save it in the plugin directory as an .avsi file and not .avs so that the script (.avsi file) loads automatically. If that doesnt work, you will have to load it manually in the .avs script that you use with the loadplugin avisynth command at the begining of your .avs script.

                        Comment

                        • techreactor
                          Banned
                          • Jul 2005
                          • 1309

                          #57
                          Originally Posted by jeo
                          all right but with some details:
                          works if you're using the old version of removegrain: http://www.avisynth.org/warpenterpri...l_20050501.zip
                          because with the newest: http://home.arcor.de/kassandro/Remov...emoveGrain.rar
                          don't have any SSETools.dll(sse2-sse3 or s) in the package and the script don't work.
                          for this reason i call for your help,to use the new removegrain version need changes in the script.

                          thanks
                          I use this with removegrain 0.9 ver. avisynth.org is the most trusted place for the filter download, so use only ones available there!!!

                          Comment

                          • techreactor
                            Banned
                            • Jul 2005
                            • 1309

                            #58
                            One more script which is proven is

                            Code:
                            Removegrain(mode=2) 
                            STMedianfilter(3,3,1,1) 
                            
                            LanczosResize(672,544,8,4,704,568) 
                            
                            DCTFilter(1,1,1,1,1,1,0.5,0) 
                            
                            AddBorders(16,16,16,16)
                            Check out the kvcd screenshots for the results using this on Matrix.

                            DCTfilter adds to the compression level while recoding.

                            PS: This is for DVD sources only.
                            Last edited by techreactor; 8 Dec 2005, 09:32 PM.

                            Comment

                            • jeo
                              Digital Video Expert
                              Digital Video Expert
                              • Feb 2004
                              • 745

                              #59
                              ot
                              tech,
                              a long time i was kvcd forum user but no more.search in the forum and you will find that DCTfilter give compression but give some issues too(like thin lines around the edges or something)...was posted there a long time ago when this forum was friendly. the eyes don't have bright(light), and the hand have hard solarization ....the general colors are too washed(don't blame the rain ) and here seems too dry and opaque...have details but the pictures seems faded(plastic semi-transparent) and too much shivers to simulate sharpness and reduce solarizations.

                              use dgindex and get screenshots with and without dctfilter to see the issue...sometimes is hard to see that they are there.i don't remeber exact what is because was posted a long time.
                              ot off

                              use this with removegrain 0.9 ver. avisynth.org is the most trusted place for the filter download, so use only ones available there!!!
                              avisynth.org have lots of outdated scripts and downloads....
                              i can trust that here is the best to know about removegrain and download the last version.

                              thanks and regards
                              Last edited by jeo; 9 Dec 2005, 11:08 AM.
                              still sending greens(you can't see but can feel)

                              geriatric rock fan

                              Comment

                              • jeo
                                Digital Video Expert
                                Digital Video Expert
                                • Feb 2004
                                • 745

                                #60
                                see the sequences with and without DCTfilter.

                                no filter:

                                DCTFilter(1,1,1,1,1,1,0.5,0)


                                no filter:

                                DCTFilter(1,1,1,1,1,1,0.5,0)


                                no filter:

                                DCTFilter(1,1,1,1,1,1,0.5,0)


                                no filter:

                                DCTFilter(1,1,1,1,1,1,0.5,0)


                                using this filter give compression because lose lots of lines
                                but turn the image opaque and dry(plastic semi-transparent as i call)

                                regards
                                still sending greens(you can't see but can feel)

                                geriatric rock fan

                                Comment

                                Working...
                                😀
                                🥰
                                🤢
                                😎
                                😡
                                👍
                                👎