Log in

View Full Version : Script suggestions for this sample content


chipzoller
5th January 2016, 02:52
Hey all,

I would like to rip and encode my TMNT original series episodes (classic 80s cartoon for those that aren't familiar) but I have been out of the Avisynth filtering/processing game so long, I can't remember even half of the tools, filters, and methods I once used to handle stuff like this. So I'm reaching out to you guys that still deal with this on a daily basis for your suggestions on what you might put together in the way of an Avisynth script for processing this content. Since I'm going to be encoding over a hundred of these, I'm not looking to squeeze every possible ounce of quality out of it, just a good balance between speed and visual quality.

Any script examples you guys might be able to put forth would be most appreciated. Thank you all in advance!

https://dl.dropboxusercontent.com/u/34960946/testdemux.demuxed.m2v

kalehrl
5th January 2016, 20:58
I seems to be hard 3:2 pulled-down progressive video.
I see this pattern:
... a a a b b c c c d d ...
If you add this to your script:
tfm(order=1).tdecimate()
it brings it to 23.976fps.
I'm not very experienced when it comes to writing avisynth script so it would be wise to wait for someone who has more experience.

kuchikirukia
7th January 2016, 14:01
tcomb()
qtgmc(preset="medium")
selecteven()
tdecimate(mode=1)
smdegrain(lsb=false,lsb_out=false,tr=2, prefilter=0,thSAD=250,contrasharp=true,refinemotion=true)
santiag()

it nukes the combing.

chipzoller
8th January 2016, 21:20
Thanks guys. kuchikirukia, how is your script suggestion on CPU? I only need something that gets the job done fairly well with a minor CPU tradeoff. Is this suitable for that, or is this a super-slow script?