Hi there,
I have two TS video ; One is :1920x1080i 29,97, and the other : 1280x720i 59,94.
I would llike to convert it in 1080P24 with megui, but I don't know how to make the avs script.
Can you help me ?
Thank you![]()
+ Reply to Thread
Results 1 to 6 of 6
-
-
Hi-
You can only convert to progressive 23.976fps if they're both shot on film. Assuming that to be the case, for the interlaced 29.97fps one:
TFM().TDecimate()
You say the other is interlaced 59.94fps, but I suspect it's really progressive 59.94fps:
SelectEven().TDecimate()
TFM and TDecimate are both part of the TIVTC.dll. -
Thanks Manono
So my script would be like this :
DirectShowSource("E:\x.ts",fps=59.97,convertfps=tr ue,audio=false)
SelectEven().Decimate() or TFM().TDecimate()
Is that correct ? -
TS may be h.264 too -- in which case, use DgAvcIndex instead of DgIndex.
Code:AvcSource("filename.dga") # 720p60 source SelectEven().TDecimate()
Code:AvcSource("filename.dga") # 1080i30 source TFM().TDecimate()
Similar Threads
-
Avisynth manual IVTC trouble
By LoopinFool in forum RestorationReplies: 27Last Post: 16th Apr 2020, 13:42 -
AviSynth or GPU based deinterlacing / IVTC
By topsyturvy in forum Video ConversionReplies: 2Last Post: 7th May 2011, 09:07 -
IVTC Program on Mac like Avisynth??
By kmxe in forum MacReplies: 0Last Post: 18th Mar 2010, 17:03 -
Changing FPS of .h264 loaded in MeGUI w/Avisynth
By karpodiem in forum Video ConversionReplies: 8Last Post: 6th Apr 2009, 10:27 -
How to convert a video of 120 Fps to... well 23.9fps or 25 fps or 30 fps
By Chuba753 in forum Newbie / General discussionsReplies: 7Last Post: 6th Jun 2008, 19:17