The full script I used:
I assumed the frame rate to 60 fps to make it easier to judge the smoothness on a 60p display. Sample attached.Code:LWLibavVideoSource("rotazione.mkv", cache=false, prefer_hw=2) FrameRateConverter(FrameDouble=true) SelectEvery(100, 0, 2, 4, 6, 8,10,12,14,16,18,\ 20,22,24,26,28,30,32,34,36,38,\ 40,42,44,46,48,50,52,54,56,58,\ 60,62,64,66,68,70,72,74,76,78,\ 80,82,84,86,88,90,91,92,93,94,96,98) AssumeFPS(60)
Of course, if the pattern changes later you'll have to filter that portion separately. You can do both (all?) parts in one script using Trim() and then concatenating with + or ++.
Code:LWLibavVideoSource("rotazione.mkv", cache=false, prefer_hw=2) FrameRateConverter(FrameDouble=true) part1 = Trim(start1, end1).SelectEvery(...) part2 = Trim(start2, end2).SelectEvery(...) part3 = Trim(start3, end3).SelectEvery(...) part1++part2++part3
+ Reply to Thread
Results 31 to 33 of 33
-
Last edited by jagabo; 3rd Jul 2023 at 12:19.
-
Similar Threads
-
Is a full frame TBC necessary if I'm not getting dropped frames?
By nightowl3090 in forum Capturing and VCRReplies: 16Last Post: 4th Oct 2022, 18:02 -
Deleted
By KhAoS182 in forum Capturing and VCRReplies: 5Last Post: 22nd Sep 2022, 05:12 -
Dropped Frames?
By Craft in forum EditingReplies: 3Last Post: 13th Apr 2021, 11:05 -
How do you know the cause of dropped frames capturing VHS?
By bigbadben in forum Newbie / General discussionsReplies: 3Last Post: 18th Oct 2020, 07:54 -
25fps with duplicates and dropped frames
By embis2003 in forum RestorationReplies: 6Last Post: 12th Oct 2020, 00:43