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. |
![]() |
#31 | Link |
Registered User
Join Date: Jun 2022
Posts: 5
|
Why am I getting this error?
Both clips should have the same colorspace! (C:/Program Files (x86)lAviSynth+/plugins64+/TemporalDegrain-v2.6.4.avsi, line 441) (C:/Program Files (x86)lAviSynth+/plugins64+/TemporalDegrain-v2.6.4.avsi, line 395) Source: MPEG2, 720x576, YUV420 Full script: Code:
video_org=FFmpegSource2("../00000.m2ts", atrack=-1) crop_left=12 # | rimozione esatta delle bande nere sinistra, sopra, destra e del disturbo sotto crop_top=2 # | 720-(12+16)x576-(2+14)=692x560 crop_right=16 crop_bottom=14 video_org_crop=video_org.crop(crop_left,crop_top,-crop_right,-crop_bottom) video_org_crop_adj=video_org_crop.ColorYUV(off_u=+12, off_v=-6) ### de-interlacing deinterlaced=video_org_crop_adj.AssumeTFF().QTGMC(preset="slow", matchpreset="slow", matchpreset2="slow", sourcematch=3, tr1=2, tr2=1, NoiseTR=2, sharpness=0.1) ### convert to YV16 deinterlaced_yv16=deinterlaced.convertToYV16() ### denoising denoised_yv16=deinterlaced_yv16.TemporalDegrain2(degrainTR=3) ### convert to YUY2 denoised=denoised_yv16.convertToYUY2() ### convert to YV12 denoised_yv12=denoised.convertToYV12() ### sharpening sharpened_yv12=denoised_yv12.LSFmod(defaults="slow") ### convert to YUY2 with chroma from YUY2 color space sharpened=sharpened_yv12.convertToYUY2().MergeChroma(denoised) ### add borders video_restored=sharpened.addborders((crop_left+crop_right)/2,(crop_top+crop_bottom)/2,(crop_left+crop_right)/2,(crop_top+crop_bottom)/2) return(video_restored) |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|