I was just wondering how I can convert an mpeg2 file that is 1280X720p within gordian knot or virtualdub down to 29.97. I am assuming that compression of the video with xvid would produce better results if it was 29.97 then 60p. Any help would be great. Thanks
P.S. I am very new to writing avisynth scripts but I think I can learn with some help.
+ Reply to Thread
Results 1 to 8 of 8
-
-
Originally Posted by mces97
See this post
https://forum.videohelp.com/viewtopic.php?t=308896&highlight= -
I did actually see that post before, I am a bit confused at what the person wrote here for converting 720p video
BT709ToBT601()
# Leave this alone. It will remove every other frame. Since 720p is 60 frames per second, this cuts it down to 30 #
SelectEven()
# Leave this alone. This will remove one out of every five frames, converting the fps to 24 fps. #
Decimate()
LanczosResize(720,480) #for 16:9 anamorphic DVD
Sharpen(0.7)
I am not sure what he means by leave this alone. If i want to cut down the framerate to 30, then dont i have to do something so that it doesnt cut it down to 24fps , since that also says leave this alone. thanks again -
If it is a movie you do want it to be 23.976fps.
If a football game, stop at 29.97fps. -
I think I understand, but correct me if I am wrong when it says leave it alone, if i want to convert to 29.97 then I just add
SelectEven()
LanczosResize(720,480) #for 16:9 anamorphic DVD
Sharpen(0.7)
but if i want 23.97 then i also add
Decimate() , which i put under the SelectEven()
see that is what I meant by I am confused. Confused on exactly how to write the script. -
Hi-
Using the GKnot generated script as the basis for your script, first edit the script, and add SelectEven(), like maybe here:
# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
SelectEven()
Then Save it and open the script in VDubMod. Scroll to a place with movement and start advancing a frame at a time. If you still see one duplicate frame in every 5 frames (as you probably will), then go back and add in Decimate:
# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
SelectEven().Decimate()
To use Decimate, you'll also have to load the Decomb plugin up at the top of the script (remove the "#" from in front):
LoadPlugin("F:\Apps\AviSynth Stuff\AviSynth\plugins\decomb.dll")
adjusted for your paths and names. All you'll have to do is to find the line up at the top of the script and delete the "#".
Save it and check the script again in VDubMod, and it should be OK; no duplicate frames, and no "skips" from missing frames. Then go back into GKnot for the encoding.
And I really don't think you'll need to use the Sharpen filter. It's not very good, will slow down the encoding, and make your video much less compressible. You're starting with an HD source, downsizing, and encoding for AVI. By definition you're going to lose detail and sharpness. -
Thanks, I will try all the suggestions. This really is a great forum.
Similar Threads
-
Gordian Knot AUDIO PROBLEM: DTS to VBR MP3? (HD 720p.mkv to SD XviD.avi)
By Randm in forum Video ConversionReplies: 2Last Post: 31st Jul 2009, 01:49 -
Auto Gordian Knot is converting to divx in 4 hours!
By szalaikornel in forum Video ConversionReplies: 8Last Post: 17th Jan 2009, 07:39 -
What's the best filter to use in Gordian Knot?
By ltd. in forum Video ConversionReplies: 1Last Post: 5th Jan 2009, 13:22 -
using Gordian Knot
By ricmetal in forum Video ConversionReplies: 3Last Post: 6th Dec 2007, 14:20 -
Gordian Knot help
By zookeeper525 in forum DVD RippingReplies: 25Last Post: 16th Aug 2007, 00:49