I'm trying to encode an anime series from R1 DVDs (see VOB fragment). According to the DGindex results, the DVDs are "100% VIDEO", except for 4 episodes that apparently had a bad transfer and that is why the indexing result is "72.02% VIDEO".
I noticed a problem when playback the encoded video and it's most noticeable in panning scenes where there are 2 or 3 previous frames that repeat themselves, causing an incorrect frame sequence. I saw an encode made by someone else, it's the same anime series and its source was the same DVD R1 but it doesn't have that problem. What AviSynth filter should be used to correct it?
My AVS script for each episode looks something like this.
Code:LWLibavVideoSource("MNTWDVD_15.VOB", cachefile="MNTWDVD_15.VOB.lwi") A=Last.Trim(0,38099).TFM().TDecimate().Spline36Resize(640,480, 6,0,-6,0) B=Last.Trim(38100,39026).TFM().TDecimate().Spline36Resize(640,480, 4,0,-4,0) A+B
+ Reply to Thread
Results 1 to 6 of 6
-
-
Use DGIndex to build an index file then Mpeg2source() to read the video.
Code:Mpeg2Source("MNTWDVD_15.d2v", CPU2="ooooxx", Info=3) TFM(d2v="MNTWDVD_15.d2v") TDecimate()
-
I don't remember where it was and when, but someone made a comment about DGindex saying that it's a very outdated tool and makes errors, that's why another plugin was used to load the video. A while ago I had trouble encoding a TS I loaded with MPEG2Source after open it in DGindex but ended up using LwlibavvideoSource instead. Should I remux to MKV instead of using the VOB container?
-
-
And if the SD source is from a Blu-ray. Would I have to use DGIndexNV/DGAVCIndex to index it and use its respective source filter? The answer may seem obvious, but as I said, I don't remember who the person was who made that comment about those tools, I thought there was another way and efficient to handle container sources (TS, VOB, MKV) that have video streams in MPEG format.
I was just saying that because I ripped DVDs with DVD Decrypter instead of using MakeMKV, I was wondering which of those 2 programs would work better
Similar Threads
-
EMA-VFI-DR for frame interpolation - "Picket Fence" problems improved
By poisondeathray in forum Video ConversionReplies: 2Last Post: 3rd Dec 2024, 14:27 -
Mp4Box - Output is generated without frame Width, frame height & frame rate
By Saptarshi in forum Newbie / General discussionsReplies: 0Last Post: 25th Nov 2022, 09:27 -
Deleted
By KhAoS182 in forum Capturing and VCRReplies: 42Last Post: 4th Aug 2022, 18:24 -
Outputting Frame Sequence Images to Create A Single Image
By imaginethat in forum EditingReplies: 31Last Post: 19th Jan 2022, 09:25 -
Problems with Frame Order in Avisynth++
By Roemer in forum EditingReplies: 20Last Post: 2nd Jun 2021, 16:47