IVTC txt60mc: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
External Links: add links
 
Line 57: Line 57:
*[http://sasuraiukyo.blog.fc2.com/blog-entry-14.html sasuraiukyo.blog.fc2.com] - ivtc_txt60mc_s (Japanese)
*[http://sasuraiukyo.blog.fc2.com/blog-entry-14.html sasuraiukyo.blog.fc2.com] - ivtc_txt60mc_s (Japanese)
*[http://tyottoenc.blog.fc2.com/blog-entry-4.html tyottoenc.blog.fc2.com] - ivtc_txt60mc_vt and txt60mcHybrid_vt (Japanese)
*[http://tyottoenc.blog.fc2.com/blog-entry-4.html tyottoenc.blog.fc2.com] - ivtc_txt60mc_vt and txt60mcHybrid_vt (Japanese)
*[https://fudosubs.forumfree.it/?t=68172306 fudosubs.forumfree.it] - ivtc_txt60fast
<br>
<br>
<br>
<br>

Latest revision as of 07:43, 6 November 2020

Abstract
Author cretindesalpes
Version v1.1
Download Script
Category IVTC & Decimation
License GPLv2
Discussion Doom9 Forum

Description

ivtc_txt60mc deinterlaces 60i credits on the top of a 24 fps telecined footage. It virtually oversamples the video to 120 fps with motion interpolation on credits only, and decimates to 24 fps. It has the advantage of avoiding footage frames interpolation, leaving them very clean, whatever the motion they contain. However, the drawback is that it requires to manually measure the origin of the 3:2 pulldown pattern (and split the clip in parts if it changes).

Requirements



ivtc_txt60mc (clip src, int frame_ref, bool "srcbob", bool "draft")


clip   =
The src parameter is a 30 fps interlaced clip.


int  fps = 24
The frame_ref parameter indicates on which frame begins the 3:2 pattern (first frame number of a clean-combed-combed-clean-clean sequence).


bool  srcbob = false


bool  draft = false


Examples

Add SetMemoryMax (1500) at the beginning of your script if you are processing HD content.

 
SetMemoryMax (1500)

MPEG2Source ("video1440x1080.d2v")
Trim (40000, 42999)
ivtc_txt60mc (2)


Changelog

Version      Date            Changes
v1.1 2011/05/09 - Added srcbob and draft parameters v1.0 2010/12/13 - Initial release






Back to External Filters