<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=SmoothDeinterlaceFunctions</id>
	<title>SmoothDeinterlaceFunctions - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://www.avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=SmoothDeinterlaceFunctions"/>
	<link rel="alternate" type="text/html" href="http://www.avisynth.nl/index.php?title=SmoothDeinterlaceFunctions&amp;action=history"/>
	<updated>2026-09-13T09:47:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>http://www.avisynth.nl/index.php?title=SmoothDeinterlaceFunctions&amp;diff=938&amp;oldid=prev</id>
		<title>Admin: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.avisynth.nl/index.php?title=SmoothDeinterlaceFunctions&amp;diff=938&amp;oldid=prev"/>
		<updated>2013-05-09T21:34:45Z</updated>

		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw-interface=&quot;&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 23:34, 9 May 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>http://www.avisynth.nl/index.php?title=SmoothDeinterlaceFunctions&amp;diff=937&amp;oldid=prev</id>
		<title>AlanHK: specific link</title>
		<link rel="alternate" type="text/html" href="http://www.avisynth.nl/index.php?title=SmoothDeinterlaceFunctions&amp;diff=937&amp;oldid=prev"/>
		<updated>2010-08-23T14:27:59Z</updated>

		<summary type="html">&lt;p&gt;specific link&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;SmoothDeinterlace is Xesdeeni2001&amp;#039;s port of Gunnar Thalin&amp;#039;s &amp;#039;Smooth&amp;#039; deinterlacer for VirtualDub. &lt;br /&gt;
&lt;br /&gt;
It is hosted on [http://www.guthspot.se/video/AVSPorts/SmoothDeinterlacer/ Gunnar Thalin&amp;#039;s webpage].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One of the many cool things you can do with this filter is convert between broadcast formats with much less quality loss than would be possible using standard AviSynth filters alone. Here are some functions suggested in the documentation; feel free to use them.&lt;br /&gt;
&lt;br /&gt;
    function PAL2NTSC_DV(clip c)&lt;br /&gt;
    {&lt;br /&gt;
        c.SmoothDeinterlace(tff=false, doublerate=true)&lt;br /&gt;
        BilinearResize(720, 480)&lt;br /&gt;
        [[ChangeFPS]](59.94)&lt;br /&gt;
        SeparateFields()&lt;br /&gt;
        SelectEvery(4, 0, 3)&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function NTSC2PAL_DV(clip c)&lt;br /&gt;
    {&lt;br /&gt;
        c.SmoothDeinterlace(tff=false, doublerate=true)&lt;br /&gt;
        [[BilinearResize]](720, 576)&lt;br /&gt;
        [[ConvertFPS]](50)&lt;br /&gt;
        SeparateFields()&lt;br /&gt;
        SelectEvery(4, 0, 3)&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function PAL2NTSC_DVD(clip c)&lt;br /&gt;
    {&lt;br /&gt;
        c.SmoothDeinterlace(tff=true, doublerate=true)&lt;br /&gt;
        BilinearResize(720, 480)&lt;br /&gt;
        ChangeFPS(59.94)&lt;br /&gt;
        [[SeparateFields]]()&lt;br /&gt;
        SelectEvery(4, 1, 2)&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function NTSC2PAL_DVD(clip c)&lt;br /&gt;
    {&lt;br /&gt;
        c.SmoothDeinterlace(tff=true, doublerate=true)&lt;br /&gt;
        BilinearResize(720, 576)&lt;br /&gt;
        ConvertFPS(50)&lt;br /&gt;
        SeparateFields()&lt;br /&gt;
        [[SelectEvery]](4, 1, 2)&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
Like what you see? Just copy the above into a script, put it in your plugins directory and start using them immediately!&lt;br /&gt;
&lt;br /&gt;
[[Category:Shared functions]]&lt;/div&gt;</summary>
		<author><name>AlanHK</name></author>
	</entry>
</feed>