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 > DV

Reply
 
Thread Tools Search this Thread Display Modes
Old 31st December 2022, 17:56   #1  |  Link
mbrijun
Registered User
 
Join Date: Jun 2016
Posts: 2
Resizing at the same time as de-interlacing with QTGMC

Hi, I am archiving some old miniDV footage (PAL). It was shot in 16:9 mode. I am de-inerlacing it, and converting pixels to square. Below is my script.

Question: is it possible to optimise the script? For example, is it possible to perform upsizing from 720x432 to 768x432 within the QTGMC script itself? I am trying to avoid two consequtive destructive operations, and would like to join them into one if possible.

Code:
SetFilterMTMode("DEFAULT_MT_MODE", 2)
AVISource("o:\test\test.avi")
QTGMC(Tuning="DV-SD")
Crop(0, 66, 720, 432)
LanczosResize(768, 432)
Prefetch(4)
I hope my question makes sense. Thank you for your answers in advance.
mbrijun is offline   Reply With Quote
Old 7th January 2023, 05:54   #2  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,823
It's not possible to avoid doing it in two steps, as the de-interlacing has to be done before the resizing (well technically before any height resizing but it still has to be done in two steps as QTGMC doesn't resize).

Are you sure your resizing is correct though? I'm fairly sure DV follows the ITU-R Rec.601 standard, which means a 4:3 image should be contained within 702x576 pixels (although it's often rounded to 704x576) rather than 720x576, so if you don't crop anything from the sides the resizing is 786x576 (rounded), or after cropping from the height in your case, it'd be 786x432.
https://en.wikipedia.org/wiki/DV#DV_compression
https://web.archive.org/web/20140816...nversion_table

You can try this function if you want to check out the difference with accurate cropping.
Used the following way it'll crop the height and resize the width according to the SAR/PAR.
https://forum.doom9.org/showthread.php?t=176667

The generic SAR for 768x432.
CropResize(0,0, 0,66,720,432, InSAR=16.0/15.0, Resizer="LanczosResize", ResizeWO=true)

The 128:117 SAR from the table in the second link above for 784x432.
It's actually 720*(128:117)=787.69, so the script will crop about one and a half pixels each side and resize to 784x432.
CropResize(0,0, 0,66,720,432, InSAR=12.0/11.0, Resizer="LanczosResize", ResizeWO=true)

And another link on SAR/PAR.
https://forum.doom9.org/showthread.p...27#post1058927

Last edited by hello_hello; 7th January 2023 at 06:00.
hello_hello 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 16:11.


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