GiCocu: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Raffriff42 (talk | contribs)
redirect for convenient searching
 
GiCocu: add documentation
 
Line 1: Line 1:
#REDIRECT [[External_filters#Levels_and_Chroma]]
{{FilterCat4|External_filters|Plugins|Adjustment_filters|Levels_and_Chroma_filters}}
{{FilterCat|External_filters|Adjustment_filters|Levels_and_Chroma_filters}}
{{Filter3
|1=[https://web.archive.org/web/20050929104845/http://e-rels.dyndns.org/downloads/ E-Male]
|2=20050620
|3=[http://www.avisynth.nl/users/warpenterprises/files/gicocu_5F25_dll_20050620.zip gicocu_5F25_dll_20050620.zip]
|4=Levels and Chroma
|5=Open source
|6=[http://forum.doom9.org/showthread.php?p=605890#post605890 Doom9 Thread]
}}
 
== Description ==
[[GiCocu]] is a plugin to load and use GIMP/Photoshop curve files.
 
*See an example here: http://avisynth.org.ru/docs/english/externalfilters/gicocu.htm
 
<br>
== Requirements ==
* [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.5.8 or greater]
* Supported color formats: [[RGB24]], [[RGB32]]
<br>
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef|GiCoCu (clip, string "f", bool "alpha", bool "photoshop", bool "hsv")}}
<br>
::{{Par2| |clip| }}
:::Input clip.
<br>
::{{Par2|f|string|""}}
:::Path to curve file.
<br>
::{{Par2|alpha|bool|false}}
:::If <code>alpha = true</code> and colorspace is RGB32 the alpha-channel of the video is processed as well.
<br>
::{{Par2|photoshop|bool|false}}
:::If <code>photoshop = true</code> the plug-in expects a Photoshop amp-file instead of a gimp color curve file.
<br>
::{{Par2|hsv|bool|false}}
:::If <code>hsv = true</code> the curves are applied in HSV color-space (DOES NOT WORK, YET).
<br>
== Examples ==
GiCoCu with default settings:
[[AviSource]]("blah.avi")
GiCoCu("c:\path\to\gimp.cur", alpha=false, photoshop=false, hsv=false)
<br>
 
== Changelog ==
Version      Date            Changes<br>
20050207      2005/02/07      - catches some errors
                              - "\" accepted in filenames ("/" still work, too)
                              - rgb32 support (as well as rgb24)
                              - optional alpha channel support
                              - amp files support (format of photoshop and bugsbunny's vdub plug-in)
                              - hsv support (thx to bugsbunny)
<br>
== Archived Downloads ==
{| class="wikitable" border="1"; width="400px"
|-
!!width="100px"| Version
!!width="150px"| Download
!!width="150px"| Mirror
|-
!20050620
|[http://www.avisynth.nl/users/warpenterprises/files/gicocu_5F25_dll_20050620.zip gicocu_5F25_dll_20050620.zip]
|[https://web.archive.org/web/20140414011333if_/http://www.avisynth.nl/users/warpenterprises/files/gicocu_5F25_dll_20050620.zip gicocu_5F25_dll_20050620.zip]
|}
<br>
 
==External Links ==
<br>
<br>
-----------------------------------------------
'''Back to [[External_filters#Levels_and_Chroma|External Filters]] &larr;'''

Latest revision as of 21:23, 13 July 2020

Abstract
Author E-Male
Version 20050620
Download gicocu_5F25_dll_20050620.zip
Category Levels and Chroma
License Open source
Discussion Doom9 Thread

Description

GiCocu is a plugin to load and use GIMP/Photoshop curve files.


Requirements


GiCoCu (clip, string "f", bool "alpha", bool "photoshop", bool "hsv")


clip   =
Input clip.


string  f = ""
Path to curve file.


bool  alpha = false
If alpha = true and colorspace is RGB32 the alpha-channel of the video is processed as well.


bool  photoshop = false
If photoshop = true the plug-in expects a Photoshop amp-file instead of a gimp color curve file.


bool  hsv = false
If hsv = true the curves are applied in HSV color-space (DOES NOT WORK, YET).


Examples

GiCoCu with default settings:

AviSource("blah.avi")
GiCoCu("c:\path\to\gimp.cur", alpha=false, photoshop=false, hsv=false)


Changelog

Version       Date            Changes
20050207 2005/02/07 - catches some errors - "\" accepted in filenames ("/" still work, too) - rgb32 support (as well as rgb24) - optional alpha channel support - amp files support (format of photoshop and bugsbunny's vdub plug-in) - hsv support (thx to bugsbunny)


Archived Downloads

Version Download Mirror
20050620 gicocu_5F25_dll_20050620.zip gicocu_5F25_dll_20050620.zip





Back to External Filters