|
|
| cricket |
| Posted: May 31 2004, 01:53 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
Hi Guy and gals, I have this And1 Mix Tape ( Basket Ball) dvd which is in Pal, Interlaced, aspect ratio 4:3. Can someone plz suggest a good deinterlace avisynth script? Also am trying to in crease the brightness and contrast and white balace. How I can do these function in Avisynth instead of in Vdub?
Cheers |
 |
| rfmmars |
| Posted: May 31 2004, 06:52 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 324
Member No.: 5438
Joined: 29-July 03

|
Deinterlacing is like fried chicken, there's a lot of ways to do it and they all taste pertty good. Down below is one that I downloaded.
I am a NTSC guy so for me and the work I do this is my simple method for getting good deinterlacing.
SepararteFields Doubleweave
Next in VD I use Alparysoft deinterlacer as the second filter, the first filter must be "AutoLevels" or it won't work. "AutoLevels" by EOD is the best filter to do video resoration that I have found, don't let the word auto fool you, there are nine presets to play with. Most important is the choice of codec for the saved file. The only two that give me the best results are Leadtools' Mjpeg and Divx 5.01
....................................................................................................................................
LoadPlugin("F:\Media\AviSynth\plugins\avisynth_c.dll") #LoadPlugin("F:\Media\AviSynth\Plugins\decomb510.dll") LoadPlugin("F:\Media\AviSynth\Plugins\KernelDeInt140.dll") LoadPlugin("F:\Media\AviSynth\Plugins\PeachSmoother.dll")
AVISource("I:\AVI WAV filtered\DI-Test-MC.avi")
FieldDeinterlace(full=false,threshold=5,dthreshold=17,map=false,blend=false,show=false) #treshold 10: no frames skipped for DI; 20: small movements not recognized #dthreshold: 15:ok; 20:small IL artef.
# TEST ON FIELD-ORDER (TFF = Order 1; BFF = Order 0) # -------------------------------------------------- # AssumeTFF().SeparateFields() # AssumeBFF.SeparateFields()
........................................................................................................................................
Good luck
richard photorecall.net |
 |
| i4004 |
| Posted: Jun 1 2004, 08:54 AM |
 |
|

Advanced Member
  
Group: Members
Posts: 2432
Member No.: 4935
Joined: 24-June 03

|
you don't wanna deinterlaced sports and especially the ones where camera moves! if humany possible,encode and watch as interlaced! if not you should try doubleframerate(dgbob or smoothdeinterlace) deinterlacing this will introduce nasty motion jerks and 25hz flicker....
fi you must deint. try graft's kerneldeinterlace
-------------------- my signature:
 |
 |
| cricket |
| Posted: Jun 1 2004, 09:52 PM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
thanks guys..will see how it goes..at present I am comparing different deinterlace methods..already encoded with kerneldeint and fielddeinterlace..still couple more to go..
choice |
 |
| smokeslikeapoet |
| Posted: Jun 16 2004, 05:28 AM |
 |
|
Unregistered

|
Be sure and view my latest test on denoising filters, my favorite deinterlacing script is included. http://virtualdub.everwicked.com/index.php...=ST&f=16&t=7132 |
 |
| cricket |
| Posted: Jun 17 2004, 01:58 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
I have looked into you script..hardly there is any special script you using to deinterlace. |
 |
| smokeslikeapoet |
| Posted: Jun 18 2004, 10:04 AM |
 |
|
Unregistered

|
Nope, nothing special. It's simple and that's why I like it so much. Are you having particular problems with simple scripts? Just wondering why you would need something more complicated. |
 |
| cricket |
| Posted: Jun 21 2004, 01:06 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
you are right..I am just currently trying different deinterlace filters with different parameters..just trying to arrive on something which satisfying my need..thanks for trying to help me though.. |
 |