Hello guys,
my problem is i have a avi file with 29,976 FPS (NTSC) that i want to convert to 25,000 FPS (Pal). I tried virtualdub but the result video is very choppy. Is there a way with avisynth (script) that makes the video better?
Thx for the help.
Volker from Germany
+ Reply to Thread
Results 1 to 6 of 6
-
-
Why do you want to do this? NTSC to PAL conversions are almost never needed in Europe as most TVs can play NTSC video without problems.
I don't do conversions between PAL and NTSC, but I do know that such conversions usually have artifacts in motion scenes. -
If the video is telecined film you want to inverse telecine back to 23.976 fps film frames and then increase the frame rate to 25. VirtualDub can do it without making the video choppy. Just go to the frame rate dialog and set the source frame rate (the top portion of the dialog) to 25. Note that this also changes the running time so the audio length has to be adjusted too. VirtualDub's advanced audio filter can do that too.
If the video is interlaced it's more difficult. Your best bet is a good bob deinterlace (Yadif) to 59.94 fps, decimate to 50 fps, then reinterlace. You can do that with VirtualDub too. It will leave the video a little choppy.
If you're making a DVD you also have to change the frame size.Last edited by jagabo; 21st Mar 2012 at 06:44.
-
Thx for the fast reply
i got the first step to 59.94 FPS but i can't get it to work with decimate. I have the plugin in virtualdub but the avs output gives me 29.976 FPS again
Can someone give me an example avs script ?
Thx for the help again
Volker -
For 29.97 fps interlaced to 25 fps interlaced:
Code:WhateverSource("filename.ext") Yadif(mode=1, order=1) # order=1 for TFF, order=0 for BFF ChangeFPS(50) # decimate from 59.94 fps to 50 fps LanczosResize(720,576) # resize as appropriate AssumeTFF() # for TFF output SeparateFields() SelectEvery(4,0,3) Weave()
Code:WhateverSource("filename.ext") TFM() TDecimate() LanczosResize(720,576) # resize as appropriate AssumeFPS(25)
Similar Threads
-
25 PAL to 23.976 NTSC AVI
By Nedward Orton in forum Video ConversionReplies: 8Last Post: 24th Mar 2012, 09:56 -
Cant convert Pal .AVI to NTSC DVD in Avidemux
By Hittz in forum Video ConversionReplies: 6Last Post: 5th Nov 2009, 07:43 -
Can AutoGK convert PAL Region 3 dvd to NTSC .avi?
By bloomcounty in forum Video ConversionReplies: 14Last Post: 20th Nov 2008, 19:31 -
NTSC-PAL-NTSC (25-23.976+pulldown) and audio sync problem - related?
By ecc in forum Video ConversionReplies: 14Last Post: 14th Nov 2007, 11:34 -
Best point at which to Convert?? (NTSC AVI to PAL DVD)
By junk in forum Video ConversionReplies: 3Last Post: 28th Jun 2007, 16:15