I am trying to convert my DV avi to x264 for view in PC only. My AVI source is 720x540 SD NTSC captured with WinDV. I use MeGUI and it give me the following avscript
AVISource("F:\b.avi", audio=false)
edeintted = AssumeBFF().SeparateFields().SelectEven().EEDI2(fi eld=-1)
tdeintted = TDeint(edeint=edeintted,order=0)
tfm(order=0,clip2=tdeintted).tdecimate(hybrid=3)
#crop
#resize
Undot() # Minimal Noise
The problem with this is it lost half of info by only select even frame. The movie will only be view in PC. So I am trying to Bob,
AVISource("F:\b.avi", audio=false)
AssumeBFF()
SeparateFields()
EEDI2(field=2)
Undot()
I am confuse if I should also add TDeint(order=0) and tfm to it as I am not sure what these 2 filter does on de-interlace. Also, the output movie's aspect ratio from the above script seems wrong (different from the source) eventhough I didn't include any crop or resize function. It give me 720x480 at the end...
Can anyone help me if there are any more filter that I should use?
+ Reply to Thread
Results 1 to 4 of 4
-
-
Are you planning on resizing?
720w 480h gives 1.5 aspect ratio (square pixels), but DV is 4/3 or 1.333.
You can encode anamorphic in the video stream (set the sar) or just set the container to signal the aspect ratio later (YAMB for .mp4 or MKVmergeGUI for .mkv)
To set the aspect ratio at the stream level, enter "--sar 8:9" (without the quotes) in the commandline box. This will not be shown in the preview window
How did I get 8:9 ?
DAR=FARxSAR
Display Aspect Ratio = Frame Aspect Ratio x Sample Aspect Ratio (the sample aspect ratio can be called pixel aspect ratio as well)
4/3 = 720/480 * 8/9 which is the DAR that you want to preserve (4/3)(assuming no resizing and keeping the 720w 480h frame dimension)
For deinterlacing, there are many choices. For fast, decent quality bobbing you can try yadif(mode=1,order=0) for bobbing,bff. For very high quality , very slow (~15x slower), you can try TempGaussMC_beta1()
Have a look at the bob deinterlacer comparison:
https://forum.videohelp.com/images/guides/p1934885/stockholma_0-520_q3_yadif_mvbobmod_t...mca4_tdtmm.avi -
Originally Posted by poisondeathray
-
Originally Posted by jagabo
@rurimoon - I forgot to mention that a very easy and common method is just to resize to 640x480 using square pixels, so the aspect ratio is then 4/3, and you don't have to worry about SAR,PAR,FAR, or aspect ratio signalling,etc...
Similar Threads
-
Aspect Ratio Question
By rede96 in forum Newbie / General discussionsReplies: 5Last Post: 14th Aug 2011, 04:17 -
Aspect Ratio Question + Some
By Alexander4444 in forum Video ConversionReplies: 7Last Post: 9th May 2011, 02:17 -
aspect ratio question
By brianhj in forum Video ConversionReplies: 6Last Post: 16th Aug 2008, 12:54 -
Aspect ratio question
By gallootjs in forum MacReplies: 4Last Post: 10th Mar 2008, 02:14 -
Aspect Ratio Question (Sorry!)
By rede in forum Newbie / General discussionsReplies: 12Last Post: 30th Dec 2007, 07:25