I'm trying to run two scripts on a tv show so the intro is fully deinterlaced and the rest is decombed. I'm getting a conditional filter error on the script below but don't quite understand why.
HTML Code:a = Trim(0, 1805).QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob") b = Trim(1806, 3000).ConditionalFilter(ChangeFPS(50), QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob").QTGMC(InputType=1), ChangeFPS(50), "IsCombedTIVTC(cthresh=2)") a + b
+ Reply to Thread
Results 1 to 4 of 4
-
-
I've gotten this to mostly work with the code below. However, I'm having trouble getting the second trim to work. part2 returns the entire video not trim(911, 0). How can I get that to work?
HTML Code:part1 = Trim(0, 910).QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob").QTGMC(InputType=1) part2 = Trim(911, 0) part2 = ConditionalFilter(ChangeFPS(50), QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob").QTGMC(InputType=1), ChangeFPS(50), "IsCombedTIVTC(cthresh=2)").invert() part1 ++ part2
-
last = Trim(911, 0)
or longer:
Code:part1 = Trim(0, 910) part1 = part1.QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob").QTGMC(InputType=1) part2 = Trim(911, 0) part2 = ConditionalFilter(part2.ChangeFPS(50), part2.QTGMC(TR0=2, TR1=2, TR2=1, Rep0=1, Rep1=0, Rep2=4, DCT=5, ThSCD1=300, ThSCD2=110, SourceMatch=3, Lossless=2, Sharpness=0.1, Sbb=0, MatchPreset="slow", NoiseProcess=2, GrainRestore=0.0, NoiseRestore=0.4, NoisePreset="slow", StabilizeNoise=false, NoiseTR=0, NoiseDeint="bob").QTGMC(InputType=1), part2.ChangeFPS(50), "IsCombedTIVTC(cthresh=2)").invert() part1 ++ part2
users currently on my ignore list: deadrats, Stears555, marcorocchini -
Similar Threads
-
Error 'Scsi error when trying to backup a dvd to my computer. How to Fix?
By zipsick in forum DVD RippingReplies: 8Last Post: 23rd Feb 2025, 12:47 -
Error while downloading YouTube video with online downloader: 403 error
By DiggaDigga2010 in forum Video Streaming DownloadingReplies: 6Last Post: 22nd Dec 2024, 16:03 -
Getting ERROR in L3.py
By Sandy sai in forum Video Streaming DownloadingReplies: 1Last Post: 20th Aug 2022, 22:06 -
Yt-dlp ERROR <urlopen error time out>
By Josh in forum Video Streaming DownloadingReplies: 9Last Post: 7th Jan 2022, 08:53 -
yt-dlp error "HTTP Error 403: Forbidden". MPD downloading [ABC.com site]
By nikshell29 in forum Video Streaming DownloadingReplies: 5Last Post: 26th Aug 2021, 15:18