Bo26fhmC5M

Results 5 comments of Bo26fhmC5M

I needed PickFrames of v0.96g to use the latest version of vsmlrt on Linux. Since I am a vapoursynth newbie, I created a function that mimics the same function, but...

> This is an optimized function doing the same > > https://github.com/Jaded-Encoding-Thaumaturgy/vs-tools/blob/master/vstools/utils/ranges.py#L227 Thank you for your response! By switching to std.FrameEval, the execution time has been significantly improved:) When I...

@couleurm I simply created a list with random elements as shown below and then performed a performance comparison. ``` clip = core.lsmas.LWLibavSource(source=r"/home/user/video.mkv") indices = random.choices(range(clip.num_frames), k=100000) picked = PickFrames2(clip, indices)...

You can find the definition of the PickFrames function on the page https://github.com/AkarinVS/vapoursynth-plugin/releases/tag/v0.96. I hope this helps. > PickFrames(c, indices) is functionally equivalent to c[indices[0]] + c[indices[1]] + ... +...

Thank you for your PR. Regarding your suggestion for "Manually add summaries," I believe this doesn't align with the design philosophy of HypaV3. Hypa's role is to automatically generate a...