SCXvidMask

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(SCXvidMask)
 
m (Requirements)
Line 18: Line 18:
 
:- Supported color formats: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]]
 
:- Supported color formats: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]]
 
<br>
 
<br>
 +
:- [http://www.microsoft.com/en-us/download/details.aspx?id=30679 Microsoft Visual C++ 2012 Redistributable Package]
 +
 
== [[Script variables|Syntax and Parameters]] ==
 
== [[Script variables|Syntax and Parameters]] ==
 
:{{Template:FuncDef|SCXvidMask (clip, string path, int "offset", bool "strict")}}
 
:{{Template:FuncDef|SCXvidMask (clip, string path, int "offset", bool "strict")}}

Revision as of 11:25, 14 June 2014

Abstract
Author tp7
Version v1.0
Download SCXvidMask-x86.zip

SCXvidMask-x64.zip

Category Scene Change Detection
License MIT but binaries are GPLv2
Discussion


Contents

Description

A tiny AviSynth plugin that reads an SCXvid log and creates a binary mask based on it. In other words it just sets all I frames to 255 and all others to 0.


Requirements

- AviSynth 2.6.0 Alpha5 or later
- x64 version requires AviSynth+ r1576 or later
- Supported color formats: Y8, YV12, YV16, YV24, YV411


- Microsoft Visual C++ 2012 Redistributable Package

Syntax and Parameters

SCXvidMask (clip, string path, int "offset", bool "strict")


string  path =
Path to the SCXvid log; path can be omitted if the log is in the same directory as the script.


int  offset = 0
Offset in frames (10 means frame 0 in the log will be considered frame 10 in the video).


bool  strict = false
Error if an unknown frame outside of range is requested (unusable with offset != 0).


Examples

SCXvidMask with default settings:

AviSource("blah.avi")
SCXvidMask(path="SCXvid.log", offset=0, strict=false)


Changelog

Version      Date            Changes
v1.0 03/04/2014 - public release.


Archived Downloads

Version Download Source Code
v1.0 SCXvidMask-x86.zip

SCXvidMask-x64.zip

1.0.zip


External Links

  • GitHub - Source code repository.





Back to External Filters

Personal tools