Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 2nd July 2020, 19:32   #41  |  Link
richardpl
Registered User
 
Join Date: Jan 2012
Posts: 271
Quote:
Originally Posted by StainlessS View Post
Using a decompiler to re-code a plugin would I think constitute Code Theft.
This is simply not true at alll.
richardpl is offline   Reply With Quote
Old 2nd July 2020, 20:03   #42  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Well it certainly aint doin' it yourself.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 17th July 2021, 08:38   #43  |  Link
EoE
Registered User
 
EoE's Avatar
 
Join Date: Apr 2021
Posts: 3
Vapoursynth Port of CCD

Whilst it isn't an AviSynth port, I have now ported CCD to Vapoursynth (as a plugin) which you may find useful. See here.
EoE is offline   Reply With Quote
Old 17th July 2021, 15:34   #44  |  Link
GMJCZP
Registered User
 
GMJCZP's Avatar
 
Join Date: Apr 2010
Location: I have a statue in Hakodate, Japan
Posts: 744
After all, is there a version of this plugin for Avs?
__________________
By law and justice!

GMJCZP's Arsenal
GMJCZP is offline   Reply With Quote
Old 17th July 2021, 15:39   #45  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,148
No, still waiting for someone interesting about project
kedautinh12 is offline   Reply With Quote
Old 20th July 2021, 17:50   #46  |  Link
EoE
Registered User
 
EoE's Avatar
 
Join Date: Apr 2021
Posts: 3
I may look into backporting the plugin to avs since there is a lot of interest. I haven't used Avisynth much, or the Avisynth API at all though, so I would probably need some help testing ect.
EoE is offline   Reply With Quote
Old 20th July 2021, 20:13   #47  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,148
Thanks, can you add support HBD, luma and more yuv colors space???

Last edited by kedautinh12; 20th July 2021 at 20:20.
kedautinh12 is offline   Reply With Quote
Old 21st July 2021, 18:10   #48  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,148
you can make the plugin work in both https://github.com/HomeOfAviSynthPlu...on/neo_DFTTest (this is backport of vs DFTTest and now it's work on both)

Last edited by kedautinh12; 10th August 2021 at 12:45.
kedautinh12 is offline   Reply With Quote
Old 7th January 2022, 18:08   #49  |  Link
anton_foy
Registered User
 
Join Date: Dec 2005
Location: Sweden
Posts: 702
Quote:
Originally Posted by EoE View Post
I may look into backporting the plugin to avs since there is a lot of interest. I haven't used Avisynth much, or the Avisynth API at all though, so I would probably need some help testing ect.
Nice! I also am interested in a CCD version for AVS+, I can help out with testing or more. Is there any info on how to port from vs to avs+ around here somewhere? Couldn't find much here on the forum.
anton_foy is offline   Reply With Quote
Old 6th December 2022, 16:00   #50  |  Link
richardpl
Registered User
 
Join Date: Jan 2012
Posts: 271
Just use chromanr from ffmpeg, it does not modify Y plane, and does not do color conversion to/from rgb.
richardpl is offline   Reply With Quote
Old 6th December 2022, 16:09   #51  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,148
Quote:
Originally Posted by richardpl View Post
Just use chromanr from ffmpeg, it does not modify Y plane, and does not do color conversion to/from rgb.
You can try CCD avs+ ver:
https://github.com/Dogway/Avisynth-S...Pack.avsi#L227
kedautinh12 is offline   Reply With Quote
Old 7th December 2022, 11:35   #52  |  Link
richardpl
Registered User
 
Join Date: Jan 2012
Posts: 271
chromanr is faster, have more features and simply better.
richardpl is offline   Reply With Quote
Old 8th December 2022, 11:56   #53  |  Link
Mounir
Registered User
 
Join Date: Nov 2006
Posts: 773
for the record i use ccd since many years, was one of the first aknowledging its wonders. However, 2 problems with it: rgb only and spatial only. Since then i've found that the script below work better in most cases than ccd

Quote:
AVISource
assumetff()
ConvertToYV16(interlaced=true)
orig=last
ev=orig.assumetff().separatefields().selecteven()
od=orig.assumetff().separatefields().selectodd()
ev
ue_chroma = UToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
ve_chroma = VToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(ue_chroma, ve_chroma)
MergeLuma(ev)
ev_filtered=last
od
uo_chroma = UToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
vo_chroma = VToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(uo_chroma, vo_chroma)
MergeLuma(od)
od_filtered=last
interleave(ev_filtered,od_filtered)
assumefieldbased().assumetff().weave()
Note KNLMeansCL and binomial blur can be removed for more chroma sharpness imo, depending on the video you're dealing with.
Mounir is offline   Reply With Quote
Old 8th June 2023, 22:35   #54  |  Link
NLPguy
Registered User
 
Join Date: Feb 2015
Posts: 31
Quote:
Originally Posted by zybex View Post
Updated fixed version CCD V1.9 (Sources + Binaries)

https://mega.nz/file/GsYlQayQ#LO7qq8...KuQRCamtUe0lO4

Hi zybex,

Unfortunately, this Mega download is not available anymore.


Please, do you (or any other user here on the forum) have this CCD V1.9 (Sources + Binaries) still available to download?


And, does anyone know if CCD 1.9 works in 64bit on AviSynth+ or AviSynth Plus?


Thank you so much in advance!
NLPguy is offline   Reply With Quote
Old 8th June 2023, 23:02   #55  |  Link
Reel.Deel
Registered User
 
Join Date: Mar 2012
Location: Texas
Posts: 1,664
Quote:
Originally Posted by NLPguy View Post
Hi zybex,

Unfortunately, this Mega download is not available anymore.


Please, do you (or any other user here on the forum) have this CCD V1.9 (Sources + Binaries) still available to download?
Temporary: https://files.videohelp.com/u/223002...s_Binaries.zip
Archived: https://web.archive.org/web/20220411...s_Binaries.zip
v1.9 with source from the author: http://acobw.narod.ru/file/ccd.zip

Edit: btw v2.0 is out: http://acobw.narod.ru/ - but no source code.

Last edited by Reel.Deel; 8th June 2023 at 23:05.
Reel.Deel is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:38.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.