GodofaGap
10th March 2006, 23:00
I'm bringing back some HDTV (1920x1080) captures to normal D1 proportions and I was wondering if resizing horizontally before doing IVTC would give a possible speed-up with no quality loss.
Normally I'd use this script:
MPEG2Source().Crop(0,0,0,-8)
Telecide(guide=1).Decimate()
Lanczos4resize(720,480)
I wondered if I could replace it with this:
MPEG2Source().Crop(0,0,0,-8)
Lanczos4resize(720,1080)
Telecide(guide=1)
Lanczos4resize(720,480)
Decimate()
I understand I will have to measure the speed-up (if any) myself, but I was just wondering if there would be any pitfalls I am not aware off that might influence quality. If I understand correctly resizing horizontally should be safe for the combing, but I could be wrong.
Thanks for any answers and insights. :)
corrected script syntax
Normally I'd use this script:
MPEG2Source().Crop(0,0,0,-8)
Telecide(guide=1).Decimate()
Lanczos4resize(720,480)
I wondered if I could replace it with this:
MPEG2Source().Crop(0,0,0,-8)
Lanczos4resize(720,1080)
Telecide(guide=1)
Lanczos4resize(720,480)
Decimate()
I understand I will have to measure the speed-up (if any) myself, but I was just wondering if there would be any pitfalls I am not aware off that might influence quality. If I understand correctly resizing horizontally should be safe for the combing, but I could be wrong.
Thanks for any answers and insights. :)
corrected script syntax