Hi, I’m trying to deal with an uncommon source (for me), and can't figure it out. Is a hard telecined japanese dvd, when separating fields I get this pattern:
0 0 0 0 1 1 1 2 2 2 3 3 3 3 4 4 4 5 5 5 6 6 6 7 7 7 7 8 8 8 9 9 9 10 10 10 10 11 11 11 12 12 12 13 13 13 13
So, four of the same, then three of the same, and so on.
I've tried various things, and I keep getting repeating frames. Any suggestions are welcome, I'm always learning something new here.
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!
+ Reply to Thread
Results 1 to 6 of 6
Thread
-
-
Yes, that scene is slow motion, I'll add another sample.
Here the pattern seems to be:
1 1 1 2 2 2 3 3 3 3Last edited by shark_bloody; 8th Feb 2023 at 21:28.
-
It looks like the "native" frame rate is about 18 fps. Probably 8mm film. This is pretty smooth:
Code:TFM(d2v="sample.demuxed.d2v") TDecimate(mode=2, rate=18)
Code:TFM(d2v="sample.demuxed.d2v") TDecimate(Cycle=5, CycleR=2)
I noticed 1 dropped frame in each of those.Last edited by jagabo; 9th Feb 2023 at 00:08.
-
Looking more closely at the video, I think it was originally 29.97 fps interlaced, bobbed to 59.94 fps, and finally reduced to about 18.088 fps by duplicating frames. Using DeDup() to remove the duplicates and assuming a frame rate of 59.94 leaves you with very smooth motion (no dups, no drops) at what appears to be a walking pace.
Code:Mpeg2Source("sample.demuxed.d2v", CPU2="ooooxx", Info=3) TFM(d2v="sample.demuxed.d2v") #DupMC(log="dedup.txt") DeDup(threshold=4.0, maxcopies=10, maxdrops=5, log="dedup.txt", times="times.txt") AssumeFPS(60000, 1001)
Similar Threads
-
Fix Inverse Telecined DVD color ghosting
By Fedex in forum Video ConversionReplies: 14Last Post: 28th Dec 2022, 02:47 -
Severely telecined frames in PAL DVD, can't seem to fix it
By GlitchBob in forum RestorationReplies: 16Last Post: 30th Dec 2021, 00:23 -
PAL DVD - Progressive video but telecined frames during shaking sequences
By GlitchBob in forum Newbie / General discussionsReplies: 4Last Post: 22nd Mar 2021, 19:06 -
Interlaced or Telecined?
By pooksahib in forum Video ConversionReplies: 15Last Post: 30th Dec 2020, 18:06 -
Fix Telecined Fades
By ZetaStax in forum Video ConversionReplies: 3Last Post: 10th Jul 2019, 12:03