30.04.2022, 22:00
Could elaborate more and give very detailed description how to do that. I really appreciate your time 
Hello Im on page 2

Hello Im on page 2



Quote:Create a file with the Vapoursynth script that would be used during encoding and test how fast that would be processed.To do this you would (before creating the job for processing) look at the Vapoursynth Preview (to make sure any used indexing file exists and to check that the script works) and the Vapoursynth Script Preview. Then you would create a test.vpy file with the content of the script shown in the Vapoursynth Script Preview and call:"PATH TO HYBRID/64bit/Vapoursynth/VSPipe.exe" -p "PATH to the test.vpy" NUL in a Windows Command Line prompt.This will do the decoding and filtering of the source without the decoding.While the decoding is running check the cpu utilisation.If the utilisation is low then the used script is the issue. (which is either the fault of one of the filters used, the source filter or the script can't get the source faster)
If the utlilisation is high the speed you see is the max speed you can get and the bottleneck is the encoder.
clip = core.lsmas.LWLibavSource(source="G:/TestClips&Co/files/MPEG-4 H.264/4k/4k_sample_4096x2160.mp4", format="YUV420P8", cache=0, prefer_hw=1)clip = core.lsmas.LWLibavSource(source="G:/TestClips&Co/files/MPEG-4 H.264/4k/4k_sample_4096x2160.mp4", format="YUV420P8", cache=0, prefer_hw=0)clip = core.lsmas.LibavSMASHSource(source="G:/TestClips&Co/files/MPEG-4 H.264/4k/4k_sample_4096x2160.mp4")clip = core.ffms2.Source(source="G:/TestClips&Co/files/MPEG-4 H.264/4k/4k_sample_4096x2160.mp4",cachefile="E:/Temp/mp4_b30946f06bbf6d3e0309b51cccf4cf0c_853323747.ffindex",format=vs.YUV420P8,alpha=False)clip = core.dgdecodenv.DGSource("E:/Temp/mp4_b30946f06bbf6d3e0309b51cccf4cf0c_853323747.dgi")clip = havsfunc.InterFrame(clip, Tuning="smooth", NewNum=60, NewDen=1) # new fps: 60clip = havsfunc.InterFrame(clip, Tuning="smooth", NewNum=60, NewDen=1, GPU=True) # new fps: 60clip = havsfunc.InterFrame(clip, Tuning="smooth", NewNum=60, NewDen=1, GPU=True) # new fps: 60
. I am not sure what is problem. also when converting 4K the whole PC becomes very laggy.![[Image: EEhD0Ne.jpg]](https://i.imgur.com/EEhD0Ne.jpg)
Quote:also when converting 4K the whole PC becomes very laggy.Hmm,... system should not get laggy, since Hybrid usualy calls everything with 'idle' priority.