VideoHelp Forum
+ Reply to Thread
Results 1 to 4 of 4
Thread
  1. I am trying to make a video so some scenes are 23.976fps, and other scenes are 29.970fps. Then use a timecodes file when muxing.

    I have done this before where I wanted the end credits to be 29.970fps and the entire episode to be 23.976. It was much simpler, and worked perfectly. I was only changing the framerate of one single scene.

    Code:
    __film = last
    __t0 = __film.trim(0, 43919).tfm(order=-1).tdecimate(mode=1,hybrid=0)
    __t1 = __film.trim(43920, 47069).tfm(order=-1).AssumeFPS(24000,1001)
    __t0 ++ __t1

    Unfortunately this time it is not working out for me for whatever reason. I want to do it to many different scenes this time. I am trying to use this to do it, but there are a lot of missing frames.

    Code:
    __film = last.TFMBobQ(cthresh=8).SRestore(frate=23.976)
    __film2 = last.tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t0 = __film2.trim(0, 2818)
    __t1 = __film.trim(2819, 3582)
    __t2 = __film2.trim(3583, 3859)
    __t3 = __film.trim(3860, 3941)
    __t4 = __film2.trim(3942, 4275)
    __t6 = __film.trim(4276, 4407)
    __t7 = __film2.trim(4408, 4435)
    __t8 = __film.trim(4436, 4461)
    __t9 = __film2.trim(4462, 4981)
    __t10 = __film.trim(4982, 5009)
    __t11 = __film2.trim(5010, 5099)
    __t12 = __film.trim(5100, 5432)
    __t13 = __film2.trim(5433, 5514)
    __t14 = __film.trim(5515, 5543)
    __t15 = __film2.trim(5544, 5677)
    __t16 = __film.trim(5678, 12359)
    __t17 = __film2.trim(12360, 12470)
    __t18 = __film.trim(12471, 14061)
    __t19 = __film2.trim(14062, 14227)
    __t20 = __film.trim(14228, 20019)
    __t21 = __film2.trim(20020, 20282)
    __t22 = __film.trim(20283, 20341)
    __t23 = __film2.trim(20342, 20485)
    __t24 = __film.trim(20486, 20955)
    __t25 = __film2.trim(20956, 21092)
    __t26 = __film.trim(21093, 21186)
    __t27 = __film2.trim(21187, 21213)
    __t28 = __film.trim(21214, 22538)
    __t29 = __film2.trim(22539, 22738)
    __t30 = __film.trim(22739, 22916)
    __t31 = __film2.trim(22917, 23366)
    __t32 = __film.trim(23367, 27075)
    __t33 = __film2.trim(27076, 27153)
    __t34 = __film.trim(27154, 27451)
    __t35 = __film2.trim(27452, 27701)
    __t36 = __film.trim(27702, 28616)
    __t37 = __film2.trim(28617, 28698)
    __t38 = __film.trim(28699, 31135)
    __t39 = __film2.trim(31136, 31337)
    __t40 = __film.trim(31338, 31422)
    __t41 = __film2.trim(31423, 31684)
    __t42 = __film.trim(31685, 31766)
    __t43 = __film2.trim(31767, 31856)
    __t44 = __film.trim(31857, 31885)
    __t45 = __film2.trim(31886, 31931)
    __t46 = __film.trim(31932, 32042)
    __t47 = __film2.trim(32043, 32118)
    __t48 = __film.trim(32119, 33656)
    __t49 = __film2.trim(33657, 33867)
    __t50 = __film.trim(33868, 35534)
    __t51 = __film2.trim(35535, 35698)
    __t52 = __film.trim(35699, 36206)
    __t53 = __film2.trim(36207, 36404)
    __t54 = __film.trim(36405, 36446)
    __t55 = __film2.trim(36447, 36490)
    __t56 = __film.trim(36491, 36738)
    __t57 = __film2.trim(36739, 36838)
    __t58 = __film.trim(36839, 36893)
    __t59 = __film2.trim(36894, 37034)
    __t60 = __film.trim(37035, 37084)
    __t61 = __film2.trim(37085, 37503)
    __t62 = __film.trim(37504, 37702)
    __t63 = __film2.trim(37703, 37827)
    __t64 = __film.trim(37828, 37894)
    __t65 = __film2.trim(37895, 37952)
    __t66 = __film.trim(37953, 37993)
    __t67 = __film2.trim(37994, 38100)
    __t68 = __film.trim(38101, 38244)
    __t69 = __film2.trim(38245, 38569)
    __t70 = __film.trim(38570, 38636)
    __t71 = __film2.trim(38637, 38827)
    __t72 = __film.trim(38828, 39140)
    __t73 = __film2.trim(39141, 39259)
    __t74 = __film.trim(39260, 39425)
    __t75 = __film2.trim(39426, 39600)
    __t76 = __film.trim(39601, 39822)
    __t77 = __film2.trim(39823, 39887)
    __t78 = __film.trim(39888, 39905)
    __t79 = __film2.trim(39906, 39941)
    __t80 = __film.trim(39942, 39997)
    __t81 = __film2.trim(39998, 40334)
    __t82 = __film.trim(40335, 44858)
    __t0 ++ __t1 ++ __t2 ++ __t3 ++ __t4 ++ __t6 ++ __t7 ++ __t8 ++ __t9 ++ __t10 ++ __t11 ++ __t12 ++ __t13 ++ __t14 ++ __t15 ++ __t16 ++ __t17 ++ __t18 ++ __t19 ++ __t20 ++ __t21 ++ __t22 ++ __t23 ++ __t24 ++ __t25 ++ __t26 ++ __t27 ++ __t28 ++ __t29 ++ __t30 ++ __t31 ++ __t32 ++ __t33 ++ __t34 ++ __t35 ++ __t36 ++ __t37 ++ __t38 ++ __t39 ++ __t40 ++ __t41 ++ __t42 ++ __t43 ++ __t44 ++ __t45 ++ __t46 ++ __t47 ++ __t48 ++ __t49 ++ __t50 ++ __t51 ++ __t52 ++ __t53 ++ __t54 ++ __t55 ++ __t56 ++ __t57 ++ __t58 ++ __t59 ++ __t60 ++ __t61 ++ __t62 ++ __t63 ++ __t64 ++ __t65 ++ __t66 ++ __t67 ++ __t68 ++ __t69 ++ __t70 ++ __t71 ++ __t72 ++ __t73 ++ __t74 ++ __t75 ++ __t76 ++ __t77 ++ __t78 ++ __t79 ++ __t80 ++ __t81 ++ __t82 
    
    LanczosResize(640,480) # Lanczos (Sharp)
    As soon as I go check frame #2819, which is the part where the opening theme song ends, its actually showing frame #3481 or so, and cuts partially right into the episode. It looks like it does this at every single different trim. Several frames are completely gone in the output video, and preview. It should not be doing that.

    I want all the film2 frames to be 29.970, and all the film ones to be 23.976fps.

    The frame numbers in the trims are from 29.970fps source.
    Last edited by killerteengohan; 16th Oct 2022 at 02:02.
    Quote Quote  
  2. I tried doing it this way instead of specifying in film and film2 at the top, but I get an error that srestore can only be called once. Avisynth wont let me do it like this.


    Code:
    __film = last
    __film2 = last
    __t0 = __film2.trim(0, 2818).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t1 = __film.trim(2819, 3582).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t2 = __film2.trim(3583, 3859).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t3 = __film.trim(3860, 3941).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t4 = __film2.trim(3942, 4275).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t6 = __film.trim(4276, 4407).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t7 = __film2.trim(4408, 4435).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t8 = __film.trim(4436, 4461).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t9 = __film2.trim(4462, 4981).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t10 = __film.trim(4982, 5009).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t11 = __film2.trim(5010, 5099).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t12 = __film.trim(5100, 5432).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t13 = __film2.trim(5433, 5514).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t14 = __film.trim(5515, 5543).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t15 = __film2.trim(5544, 5677).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t16 = __film.trim(5678, 12359).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t17 = __film2.trim(12360, 12470).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t18 = __film.trim(12471, 14061).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t19 = __film2.trim(14062, 14227).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t20 = __film.trim(14228, 20019).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t21 = __film2.trim(20020, 20282).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t22 = __film.trim(20283, 20341).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t23 = __film2.trim(20342, 20485).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t24 = __film.trim(20486, 20955).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t25 = __film2.trim(20956, 21092).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t26 = __film.trim(21093, 21186).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t27 = __film2.trim(21187, 21213).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t28 = __film.trim(21214, 22538).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t29 = __film2.trim(22539, 22738).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t30 = __film.trim(22739, 22916).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t31 = __film2.trim(22917, 23366).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t32 = __film.trim(23367, 27075).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t33 = __film2.trim(27076, 27153).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t34 = __film.trim(27154, 27451).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t35 = __film2.trim(27452, 27701).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t36 = __film.trim(27702, 28616).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t37 = __film2.trim(28617, 28698).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t38 = __film.trim(28699, 31135).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t39 = __film2.trim(31136, 31337).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t40 = __film.trim(31338, 31422).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t41 = __film2.trim(31423, 31684).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t42 = __film.trim(31685, 31766).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t43 = __film2.trim(31767, 31856).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t44 = __film.trim(31857, 31885).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t45 = __film2.trim(31886, 31931).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t46 = __film.trim(31932, 32042).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t47 = __film2.trim(32043, 32118).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t48 = __film.trim(32119, 33656).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t49 = __film2.trim(33657, 33867).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t50 = __film.trim(33868, 35534).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t51 = __film2.trim(35535, 35698).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t52 = __film.trim(35699, 36206).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t53 = __film2.trim(36207, 36404).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t54 = __film.trim(36405, 36446).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t55 = __film2.trim(36447, 36490).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t56 = __film.trim(36491, 36738).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t57 = __film2.trim(36739, 36838).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t58 = __film.trim(36839, 36893).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t59 = __film2.trim(36894, 37034).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t60 = __film.trim(37035, 37084).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t61 = __film2.trim(37085, 37503).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t62 = __film.trim(37504, 37702).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t63 = __film2.trim(37703, 37827).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t64 = __film.trim(37828, 37894).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t65 = __film2.trim(37895, 37952).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t66 = __film.trim(37953, 37993).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t67 = __film2.trim(37994, 38100).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t68 = __film.trim(38101, 38244).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t69 = __film2.trim(38245, 38569).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t70 = __film.trim(38570, 38636).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t71 = __film2.trim(38637, 38827).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t72 = __film.trim(38828, 39140).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t73 = __film2.trim(39141, 39259).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t74 = __film.trim(39260, 39425).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t75 = __film2.trim(39426, 39600).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t76 = __film.trim(39601, 39822).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t77 = __film2.trim(39823, 39887).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t78 = __film.trim(39888, 39905).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t79 = __film2.trim(39906, 39941).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t80 = __film.trim(39942, 39997).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t81 = __film2.trim(39998, 40334).tfm(order=-1, slow=2, cthresh=8).AssumeFPS(24000,1001)
    __t82 = __film.trim(40335, 44858).TFMBobQ2(cthresh=8).SRestore(frate=23.976)
    __t0 ++ __t1 ++ __t2 ++ __t3 ++ __t4 ++ __t6 ++ __t7 ++ __t8 ++ __t9 ++ __t10 ++ __t11 ++ __t12 ++ __t13 ++ __t14 ++ __t15 ++ __t16 ++ __t17 ++ __t18 ++ __t19 ++ __t20 ++ __t21 ++ __t22 ++ __t23 ++ __t24 ++ __t25 ++ __t26 ++ __t27 ++ __t28 ++ __t29 ++ __t30 ++ __t31 ++ __t32 ++ __t33 ++ __t34 ++ __t35 ++ __t36 ++ __t37 ++ __t38 ++ __t39 ++ __t40 ++ __t41 ++ __t42 ++ __t43 ++ __t44 ++ __t45 ++ __t46 ++ __t47 ++ __t48 ++ __t49 ++ __t50 ++ __t51 ++ __t52 ++ __t53 ++ __t54 ++ __t55 ++ __t56 ++ __t57 ++ __t58 ++ __t59 ++ __t60 ++ __t61 ++ __t62 ++ __t63 ++ __t64 ++ __t65 ++ __t66 ++ __t67 ++ __t68 ++ __t69 ++ __t70 ++ __t71 ++ __t72 ++ __t73 ++ __t74 ++ __t75 ++ __t76 ++ __t77 ++ __t78 ++ __t79 ++ __t80 ++ __t81 ++ __t82
    Quote Quote  
  3. You need SRestore 2.7f or newer.

    You may also need to call PreRoll before each SRestore.

    And since 23.976 isn't the same as 24000/1001 you may need to add AssumeFPS(24000, 1001) after each SRestore.
    Last edited by jagabo; 16th Oct 2022 at 08:24.
    Quote Quote  
  4. I never heard of or used preroll before. I will have to play with that some time. I have version 2.7e from the looks of it.


    I eventually came up with a solution though. I made a 29.970fps script, and a 23.976fps script, so I had 2 scripts. I went through the scripts one frame at a time and I trimmed them at the exact same places in both scripts. The frame numbers are of course different in one script because of the 23.976 decimation, but they are both trimmed at the same exact areas, and trimmed the same amount of times.

    I then took all the 23.976 frames I needed from the second script, and pasted them into the 29.970fps script over top of half of the 29.970 frame trims. All of the odd trim numbers are from the 23.976 script.

    Code:
    tfm(order=-1, slow=2, cthresh=8)
    
    FPS23 = Import("C:\Users\Admin\Desktop\Encoding\FS\Episode 1\VTS_07_1 23.avs")
    __film = FPS23
    __film2 = last.assumefps(24000,1001)
    __t0 = __film2.trim(0, 2818)
    __t1 = __film.trim(2256, 2866)
    __t2 = __film2.trim(3583, 3859)
    __t3 = __film.trim(3089, 3153)
    __t4 = __film2.trim(3942, 4226)
    __t5 = __film.trim(3382, 3396)
    __t6 = __film2.trim(4245, 4275)
    __t7 = __film.trim(3422, 3526)
    __t8 = __film2.trim(4408, 4435)
    __t9 = __film.trim(3550, 3569)
    __t10 = __film2.trim(4462, 4981)
    __t11 = __film.trim(3986, 4008)
    __t12 = __film2.trim(5010, 5099)
    __t13 = __film.trim(4081, 4346)
    __t14 = __film2.trim(5433, 5514)
    __t15 = __film.trim(4413, 4435)
    __t16 = __film2.trim(5544, 5677)
    __t17 = __film.trim(4544, 9888)
    __t18 = __film2.trim(12360, 12609)
    __t19 = __film.trim(10089, 11249)
    __t20 = __film2.trim(14062, 14227)
    __t21 = __film.trim(11383, 16016)
    __t22 = __film2.trim(20020, 20282)
    __t23 = __film.trim(16228, 16274)
    __t24 = __film2.trim(20342, 20485)
    __t25 = __film.trim(16390, 16765)
    __t26 = __film2.trim(20956, 21092)
    __t27 = __film.trim(16875, 16950)
    __t28 = __film2.trim(21187, 21213)
    __t29 = __film.trim(16972, 18031)
    __t30 = __film2.trim(22539, 22738)
    __t31 = __film.trim(18192, 18333)
    __t32 = __film2.trim(22917, 23366)
    __t33 = __film.trim(18695, 21661)
    __t34 = __film2.trim(27076, 27153)
    __t35 = __film.trim(21724, 21961)
    __t36 = __film2.trim(27452, 27701)
    __t37 = __film.trim(22163, 22894)
    __t38 = __film2.trim(28617, 28698)
    __t39 = __film.trim(22960, 24908)
    __t40 = __film2.trim(31136, 31337)
    __t41 = __film.trim(25071, 25139)
    __t42 = __film2.trim(31423, 31684)
    __t43 = __film.trim(25349, 25414)
    __t44 = __film2.trim(31767, 31856)
    __t45 = __film.trim(25487, 25509)
    __t46 = __film2.trim(31886, 31931)
    __t47 = __film.trim(25547, 25634)
    __t48 = __film2.trim(32043, 32118)
    __t49 = __film.trim(25696, 26925)
    __t50 = __film2.trim(33657, 33867)
    __t51 = __film.trim(27096, 28427)
    __t52 = __film2.trim(35535, 35698)
    __t53 = __film.trim(28561, 28965)
    __t54 = __film2.trim(36207, 36404)
    __t55 = __film.trim(29125, 29157)
    __t56 = __film2.trim(36447, 36490)
    __t57 = __film.trim(29193, 29391)
    __t58 = __film2.trim(36739, 36838)
    __t59 = __film.trim(29472, 29515)
    __t60 = __film2.trim(36894, 37034)
    __t61 = __film.trim(29629, 29668)
    __t62 = __film2.trim(37085, 37232)
    __t63 = __film.trim(29787, 29808)
    __t64 = __film2.trim(37260, 37503)
    __t65 = __film.trim(30004, 30162)
    __t66 = __film2.trim(37703, 37744)
    __t67 = __film.trim(30197, 30219)
    __t68 = __film2.trim(37774, 37827)
    __t69 = __film.trim(30263, 30315)
    __t70 = __film2.trim(37895, 37952)
    __t71 = __film.trim(30363, 30395)
    __t72 = __film2.trim(37994, 38100)
    __t73 = __film.trim(30482, 30596)
    __t74 = __film2.trim(38245, 38569)
    __t75 = __film.trim(30857, 30909)
    __t76 = __film2.trim(38637, 38827)
    __t77 = __film.trim(31063, 31313)
    __t78 = __film2.trim(39141, 39259)
    __t79 = __film.trim(31409, 31541)
    __t80 = __film2.trim(39426, 39600)
    __t81 = __film.trim(31682, 31859)
    __t82 = __film2.trim(39823, 39887)
    __t83 = __film.trim(31912, 31924)
    __t84 = __film2.trim(39906, 39941)
    __t85 = __film.trim(31955, 31998)
    __t86 = __film2.trim(39998, 40334)
    __t87 = __film.trim(32269, 35886)
    __t0 ++ __t1 ++ __t2 ++ __t3 ++ __t4 ++ __t5 ++ __t6 ++ __t7 ++ __t8 ++ __t9 ++ __t10 ++ __t11 ++ __t12 ++ __t13 ++ __t14 ++ __t15 ++ __t16 ++ __t17 ++ __t18 ++ __t19 ++ __t20 ++ __t21 ++ __t22 ++ __t23 ++ __t24 ++ __t25 ++ __t26 ++ __t27 ++ __t28 ++ __t29 ++ __t30 ++ __t31 ++ __t32 ++ __t33 ++ __t34 ++ __t35 ++ __t36 ++ __t37 ++ __t38 ++ __t39 ++ __t40 ++ __t41 ++ __t42 ++ __t43 ++ __t44 ++ __t45 ++ __t46 ++ __t47 ++ __t48 ++ __t49 ++ __t50 ++ __t51 ++ __t52 ++ __t53 ++ __t54 ++ __t55 ++ __t56 ++ __t57 ++ __t58 ++ __t59 ++ __t60 ++ __t61 ++ __t62 ++ __t63 ++ __t64 ++ __t65 ++ __t66 ++ __t67 ++ __t68 ++ __t69 ++ __t70 ++ __t71 ++ __t72 ++ __t73 ++ __t74 ++ __t75 ++ __t76 ++ __t77 ++ __t78 ++ __t79 ++ __t80 ++ __t81 ++ __t82 ++ __t83 ++ __t84 ++ __t85 ++ __t86 ++ __t87

    That worked perfectly, and the timecodes file I made came out perfectly in sync after muxing as well.
    Last edited by killerteengohan; 16th Oct 2022 at 11:11.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!