AVSCube
From Avisynth wiki
(Difference between revisions)
(add archived downloads section) |
m (→Archived Downloads: add archived links) |
||
Line 67: | Line 67: | ||
!v1.1 | !v1.1 | ||
|[http://rationalqm.us/hdr/avscube_1.1.rar avscube_1.1.rar] | |[http://rationalqm.us/hdr/avscube_1.1.rar avscube_1.1.rar] | ||
− | | | + | |[https://web.archive.org/web/20190616102645/http://rationalqm.us/hdr/avscube_1.1.rar avscube_1.1.rar] |
|- | |- | ||
!v1.0 | !v1.0 | ||
|[http://rationalqm.us/misc/avscube_1.0.rar avscube_1.0.rar] | |[http://rationalqm.us/misc/avscube_1.0.rar avscube_1.0.rar] | ||
− | | | + | |[https://web.archive.org/web/20180818163126/http://rationalqm.us/misc/avscube_1.0.rar avscube_1.0.rar] |
|} | |} | ||
<br> | <br> |
Revision as of 18:51, 20 April 2020
Abstract | |
---|---|
Author | Donald Graft |
Version | v1.1 |
Download | avscube_1.1.rar |
Category | Adjustment Filters |
License | Open source |
Discussion | Doom9 Thread |
Contents[hide] |
Description
AviSynth+ plugin to load and apply 3D LUTs to a clip. Ported from VapourSynth timecube plugin.
Requirements
Syntax and Parameters
- Cube (clip, string "cube", int "cpu", bool "fullrange"
- clip =
- Input clip; the filter receives and delivers the RGBP16 color space.
- clip =
- string cube = ""
- Full path of the 3D LUT file. This must be an Adobe *.cube file.
- string cube = ""
- int cpu = INT_MAX
- cpu: default INT_MAX, which selects best SIMD.
- 0 : SIMD_NONE
- 1 : SIMD_SSE42
- 2 : SIMD_AVX2
- cpu: default INT_MAX, which selects best SIMD.
- int cpu = INT_MAX
- bool fullrange = true
- false : limited range
- true : full range
- bool fullrange = true
Examples
Apply 3D LUT to clip obtained from BlankClip:
BlankClip(pixel_type="RGBP16", color=$ff0000) Cube("...\test.cube") ConvertToYUV420()
Apply 3D LUT to HDR10 PQ clip obtained from DGSource():
DGSource("THE GREAT WALL.dgi", fulldepth=true) z_ConvertFormat(pixel_type="RGBP16", colorspace_op="2020ncl:st2084:2020:l=>rgb:linear:2020:f", dither_type="none") Cube("...\test.cube") z_ConvertFormat(pixel_type="YUV420P16", colorspace_op="rgb:linear:2020:f=>2020ncl:st2084:2020:l", dither_type="none")
Changelog
Version Date Changes v1.1 2019/01/25 - Rather than upgrade to r2a I ported the fullrange fix only. v1.0 2018/08/16 - Initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
v1.1 | avscube_1.1.rar | avscube_1.1.rar |
v1.0 | avscube_1.0.rar | avscube_1.0.rar |
External Links
Back to External Filters ←