Originally Posted by manono
I like using BlackmanResize for downscaling, and LanczosResize for upscaling. I got the script from FitCD.
How's this script?
Code:LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TIVTC.dll") LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll") Mpeg2Source("D:\The Matrix\movie.d2v") BlackmanResize(640,352) TFM(D2V="D:\The Matrix\movie.d2v") TDecimate(
+ Reply to Thread
Results 61 to 72 of 72
-
-
Once again, you need to IVTC before resizing:
And if you had used the Forced Film option in DgIndex (The Matrix is likely encoded progressive with pulldown flags) you wouldn't need to IVTC at all:Code:LoadPlugin("C:\Program Files\AviSynth[/url] 2.5\plugins\TIVTC.dll") LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll") Mpeg2Source("D:\The Matrix\movie.d2v") TFM(D2V="D:\The Matrix\movie.d2v") TDecimate() BlackmanResize(640,352)
Code:LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll") Mpeg2Source("D:\The Matrix\movie.d2v") BlackmanResize(640,352) -
1.) I rather use IVTC.
2.) After encoding how do I fix the audio?
3.) What is the difference for the DivX keyframe of 300 and 100? 300 is default.
It's time for a chew. I chew 2 tin cans a day. Lol. -
Unless you're doing this as a learning exercise or an experiment you are just wasting time. It silly to take a progressive soure, turn it into a telecined video, then inverse telecine. The result is the same except that IVTC will sometimes make mistakes and cause jerks in the video.Originally Posted by rocky12
As has been discussed before, you set the audio skew.Originally Posted by rocky12
Basically, high compression codecs save space by only encoding the changes between frames. First a keyframe is created which contains an entire picture (like a JPEG image) then subsequent frames only encode things that change between frames. The keyframe interval determines how often a keyframe is inserted into the video stream. Using shorter keyframe intervals leads to less compression but easier seeking during playback. I prefer to use 100 rather than the default of 300. The difference in compression is very little but seeking during playback is much easier. If you use intervals less than 30 or so the compression starts to suffer.Originally Posted by rocky12 -
1. If it can be Force Filmed and you'd still rather IVTC, then that means you'd also rather the encoding take much longer and also rather have possible IVTC mistakes? If it can be Force Filmed, then a Force Film is much preferable to an IVTC.
2. What's wrong with the audio?
3. If the framerate is 23.976fps, then keyframes at a max of 300 frames means one at least every 12 seconds or so. If the Keyframe distance is 100 frames, then at 23.976fps you'll get one at least every 4 seconds or so. For XviD/DivX AVI it's often recommended to set them for every 10 seconds or, in this case, for 240.
I forgot that The Matrix is something like 2.40:1. Don't you believe in cropping away all the black bars above and below the picture and then resizing to 640x272 or whatever is correct after the cropping is complete?Originally Posted by rocky12 -
So, set the skew for whatever it takes to get it back in synch.Originally Posted by rocky12
-
Not unless you post a sample of the audio and video with identifiable sounds.Originally Posted by rocky12
The video you uploaded in this post
https://forum.videohelp.com/topic368025-30.html#1968322
is empty.
The d2v you uploaded in this post
https://forum.videohelp.com/topic368025.html#1967908
indicates the video is already 23.976 fps and doesn't need an IVTC. Using TFM() and TDecimate() on that video will result in a video that is 19.181 fps. This will create a jerky video.
About 3 minutes into the movie there is a fight scene between Carrie-Anne Moss (Trinity) and the cops. That scene has many identifiable sounds -- gun shots, punches, etc. -
1.) I don't need IVTC?
2.) With the d2v clip. Was the audio out of sync? Will you fix it?
Originally Posted by jagabo -
The video referenced in the D2V clip is already 23.976 progressive film frames.Originally Posted by rocky12
The D2V clip contains no video or audio. It's just a text file listing some properties of the video. Here's part of what's in the D2V file:Originally Posted by rocky12
Code:DGIndexProjectFile16 4 D:\The Matrix\VIDEO_TS\VTS_02_1.VOB D:\The Matrix\VIDEO_TS\VTS_02_2.VOB D:\The Matrix\VIDEO_TS\VTS_02_3.VOB D:\The Matrix\VIDEO_TS\VTS_02_4.VOB Stream_Type=1 MPEG_Type=2 iDCT_Algorithm=6 YUVRGB_Scale=1 Luminance_Filter=0,0 Clipping=0,0,0,0 Aspect_Ratio=16:9 Picture_Size=720x480 Field_Operation=1 Frame_Rate=23976 (24000/1001) Location=0,0,3,1c067 d00 5 0 2048 0 1 1 b2 b2 92 b2 b2 a2 b2 b2 a2 b2 b2 a2 b2 b2 a2 900 5 0 192512 0 1 1 32 32 92 b2 b2 a2 b2 b2 a2 b2 b2 a2 b2 b2 a2
-
That's not really the question, although it probably doesn't need an IVTC. But jagabo spotted something I missed when I was looking at the D2V myself, partly because I assumed you had left it at its default settings, and that's this:Originally Posted by rocky12
Field_Operation=1
That says you had set the Field Operation to Forced Film which makes a 23.976fps D2V to be used in your AviSynth script. An IVTC on top of that would make it jerky as all get out, with 19.98fps. When Force Filming, you don't IVTC afterwards. But you have to be sure that Force Film is the right thing to do. With the field operation set for Honor Pulldown Flags you'd get a 29.97fps D2V and, if applicable, you'd IVTC that. Honor Pulldown Flags would give you this near the top of the D2V file:
Field_Operation=0
Similar Threads
-
How To deinterlace IVTC ntsc promo only music video
By jamespoo in forum Video ConversionReplies: 14Last Post: 24th Mar 2011, 17:12 -
Question Re IVTC, DGIndex & NTSC Source
By onesikgypo in forum Video ConversionReplies: 7Last Post: 18th Aug 2009, 04:58 -
Can't properly DeInterlace or IVTC
By igoryonya in forum Video ConversionReplies: 46Last Post: 4th Mar 2009, 18:47 -
DGIndex Force Film vs IVTC
By alcOre in forum Newbie / General discussionsReplies: 4Last Post: 22nd Feb 2009, 03:25 -
dgindex what to choose
By cd090580 in forum Video ConversionReplies: 1Last Post: 29th Feb 2008, 18:33



Quote