Log in

View Full Version : New Plugins and Utilities


Pages : 1 2 3 4 5 6 7 [8]

hello_hello
27th March 2025, 10:17
I had a bit of time to kill so here's an improved version.
The clips can have different sample aspect ratios as long as they have a SAR in frame properties.
There's a description of the arguments at the top of the script.

Link for an updated version of the function in post #355 (https://forum.doom9.org/showthread.php?p=2019958#post2019958).

Creating three source clips from a 720p video.

Trim(5479,5479)
A = CropResize(720,576, OutSAR=16.0/15.0)
B = CropResize(720,436, OutSAR=16.0/15.0)
C = CropResize(720,576, OutSAR=64.0/45.0)

https://i.ibb.co/JRj5c5gV/0A.jpg
https://i.ibb.co/v4DXSZjj/0B.jpg
https://i.ibb.co/rf7NKPW7/0C.jpg

CombineClips([A,B,C])

https://i.ibb.co/DfxwhZrv/1A.jpg
https://i.ibb.co/zhjpBj6p/1B.jpg
https://i.ibb.co/4ndC8R8S/1C.jpg

CombineClips([A,B,C], Max=false)

https://i.ibb.co/JRj5c5gV/0A.jpg
https://i.ibb.co/b51HKzg1/2B.jpg
https://i.ibb.co/ynHvffXS/2C.jpg

Resizing for NTSC complaint video.
CombineClips([A,B,C], 720,480, OutSAR=10.0/11.0)

https://i.ibb.co/Y4yQVVZL/3A.jpg
https://i.ibb.co/XZ6jM51t/3B.jpg
https://i.ibb.co/NdCZH3Vx/3C.jpg

v0lt
3rd April 2025, 07:30
MPC Script Source 0.2.7.192 (https://github.com/v0lt/ScriptSourceFilter/releases/tag/0.2.7)
The filter allows to open AviSynth+ and VapourSynth script files in DirectShow video players.

Changes:
Fixed registration of a filter from a folder with Unicode characters.

wonkey_monkey
26th April 2025, 23:42
RemapVK (https://forum.doom9.org/showthread.php?t=186301)

A GPU-based image remapper.

DTL
25th May 2025, 10:03
Reduced version of M_QTGMC() script to work with old versions of mvtools2 (up to 2.7.46 release by pinterf) - https://github.com/DTL2020/QTGMC/releases/tag/m_0.2old_mvt

It still works somehow better in comparison with QTGMC(preset="slow"). Test/compare script example included in the release archive. Currently highest complexity preset M_QTGMC_high() looks also working and make some better result (but even much more slower).

Also expected to be much faster without new complex motion estimation modes for MAnalyse.

Some comparison with same QTGMC version at running animal capture (VHS-like)
https://imgsli.com/MzgyNjA0

Also there is an idea to make QTGMC with RIFE interpolation engine for comparison instead of mvtools. Though it also fails on low quality blurry content like VHS captures.

hello_hello
22nd June 2025, 15:10
I had a bit of time to kill so here's an improved version.
The clips can have different sample aspect ratios as long as they have a SAR in frame properties.
There's a description of the arguments at the top of the script.

New version of CombineClips (see post #351 (https://forum.doom9.org/showthread.php?p=2016961#post2016961)) .
Simplified the syntax for determining the correct dimensions and storage aspect ratio.
Added additional arguments to the function.

CombineClips 2025-07-08.avsi (https://files.videohelp.com/u/210984/CombineClips%202025-07-08.avsi)

Edit: 2025-07-08
Fixed the function only taking the width height and aspect ratio of the first and last clips into account when looking for the maximums.

wonkey_monkey
27th July 2025, 13:59
OnDemandFilter v0.2 (https://forum.doom9.org/showthread.php?t=186440)

Filter deferring wrapper, reduces memory usage and script loading times.