I'm trying to run an HD AVC file through HCencoder to resize it and make it a dvd compliant stream. When I ran the mkv (with the muxed audio and video) through MediaInfo it said the FPS was 23.97. But after using MKV Demux and just indexing the AVC video stream with DGAVCIndex, it said the FPS was 25.
I want to run a basic avisynth script with HCEncoder:
Something like this:
But I need to get the FPS to 23.97 (and then I'd add the 3:2 pulldown with HCEncoder to make it DVD compliant).Code:AvCSource("C:\Movie\movie.dga") Spline36Resize(720,480) Colormatrix(mode="rec.709->rec.601")
Now would adding a line in my script: AssumeFPS(24000,1001), would that work? Or would that result in a jittery stuttering mess as far as the picture on playback.
Any help or suggestions would be appreciated.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Ahh ok, I'll give that a try. My understanding was that you had to extract the files from the MKV container and index them. I'll give your way a try. So just to clarify, when trying out your suggestion, would the following be an acceptable avisynth script:
Code:FFVideoSource("C:\Desktop\myfile.mkv", track=-1, seekmode=0) Spline36Resize(720,480) Colormatrix(mode="rec.709->rec.601")
Thanks for your help dave! -
Encode it at 25 fps progressive then use DgPulldown to add 3:2:3:2:2 pulldown flags. That way you don't have to change the audio.
-
Similar Threads
-
Need help dealing with blocking
By drawar in forum Video ConversionReplies: 4Last Post: 15th Jun 2011, 04:04 -
Dealing with 59.940fps Progressive video.
By greyfalcon in forum Video ConversionReplies: 0Last Post: 3rd Jun 2011, 21:26 -
Dealing with Anime DVDs
By tehslax in forum Newbie / General discussionsReplies: 4Last Post: 28th Nov 2010, 15:06 -
Dealing with consistant mic noise
By HDClown in forum RestorationReplies: 10Last Post: 29th Apr 2010, 19:39 -
Dealing with VOBs, subtitles, Sizzle and Miyu
By silverspell in forum MacReplies: 4Last Post: 25th Feb 2009, 06:57