FieldHint: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
add v0.12
m minor changes
 
Line 3: Line 3:
| {{Author/akupenguin}}
| {{Author/akupenguin}}
| v0.12
| v0.12
| [http://web.archive.org/web/20120223025813/http://ivtc.org/yatta%20support/fieldhint-0.12.rar fieldhint-0.12.rar]
| [http://web.archive.org/web/20120223025813if_/http://ivtc.org/yatta%20support/fieldhint-0.12.rar fieldhint-0.12.rar]
| Deinterlacing  
| Deinterlacing  
| [http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
| [http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
Line 14: Line 14:
<br>
<br>
== Requirements ==
== Requirements ==
* AviSynth 2.5.8 or later
* [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.5.8 or greater]
* Supported color formats: [[YV12]]
* Supported color formats: [[YV12]]
<br>
<br>
Line 57: Line 57:
|-
|-
!v0.12
!v0.12
|[http://web.archive.org/web/20120223025813/http://ivtc.org/yatta%20support/fieldhint-0.12.rar fieldhint-0.12.rar]
|[http://ivtc.vapoursynth.com/yatta%20support/fieldhint-0.12.rar fieldhint-0.12.rar]
|N/A
|[http://web.archive.org/web/20120223025813if_/http://ivtc.org/yatta%20support/fieldhint-0.12.rar fieldhint-0.12.rar]
|-
|-
!v0.11
!v0.11
|[http://akuvian.org/src/avisynth/fieldhint-0.11.zip fieldhint-0.11.zip]
|[http://akuvian.org/src/avisynth/fieldhint-0.11.zip fieldhint-0.11.zip]
|[http://web.archive.org/web/20150329214735/http://akuvian.org/src/avisynth/fieldhint-0.11.zip fieldhint-0.11.zip]
|[http://web.archive.org/web/20150329214735if_/http://akuvian.org/src/avisynth/fieldhint-0.11.zip fieldhint-0.11.zip]
|-
|-
!v0.10
!v0.10
|[http://akuvian.org/src/avisynth/fieldhint-0.10.zip fieldhint-0.10.zip]
|[http://akuvian.org/src/avisynth/fieldhint-0.10.zip fieldhint-0.10.zip]
|[http://web.archive.org/web/20150329214831/http://akuvian.org/src/avisynth/fieldhint-0.10.zip fieldhint-0.10.zip]
|[http://web.archive.org/web/20150329214831if_/http://akuvian.org/src/avisynth/fieldhint-0.10.zip fieldhint-0.10.zip]
|}
|}
<br>
<br>

Latest revision as of 20:12, 4 July 2020

Abstract
Author Loren Merritt
Version v0.12
Download fieldhint-0.12.rar
Category Deinterlacing
License GPLv2
Discussion

Description

FieldHint combines arbitrary fields from the input clip, and optionally adds Telecide-compatible postprocessing hints.

Requirements


FieldHint (clip, string "ovr", bool "show"")


clip   =
Input clip.


string  ovr = null
Filename from which to read field pairs.
Format:
0,0,-
3,42,+
1,2
Each line consist of a pair of numbers: the frames from which to take the top and bottom fields, respectively.
The optional 3rd parameter sets postprocessing hints. ("+" => mark as interlaced. "-" => mark as progressive.)


bool  show = false
True: prints the field numbers and overrides on each frame.


Examples

Incomplete example:

MPEG2Source("C:\path_to\blah.d2v")
FieldHint(ovr="C:\path_to\blah.d2v.fh.txt")


Changelog

Version      Date            Changes
v0.12 2011-05-25 - Changes by Fredrik Mellbin - Speed optimizations, will now try to request source frames in order which plays nicer with most upstream filter and will do less memory copies.
v0.11 2005-04-19 - Add option "show" for framenumbers and overrides.
v0.10 2004-12-10 - Initial release.


Archived Downloads

Version Download Mirror
v0.12 fieldhint-0.12.rar fieldhint-0.12.rar
v0.11 fieldhint-0.11.zip fieldhint-0.11.zip
v0.10 fieldhint-0.10.zip fieldhint-0.10.zip





Back to External Filters