Simon
Simon
Playright somehow doesn't support the playback of videos, that's why it gives that error. Maybe we can hide the video?
@LevaniVashadze Good one, will it throw an error if you do not have an Nvidia card? Looks a bit like PR #2256, maybe we could add a universal check to...
@LevaniVashadze is that the most safe and reliable method? I don't think all the users have ffmpeg installed in their PATH. I will soon run that code to see the...
> > ``` > > def check_nvenc_support(): > > """Check if the system supports NVENC encoding by attempting to encode a test frame.""" > > import subprocess > > >...
@LevaniVashadze This code returns that the codec is supported ```py import subprocess result = subprocess.run( ['ffmpeg', '-loglevel', 'error', '-f', 'lavfi', '-i', 'color=black:s=1080x1080', '-vframes', '1', '-an', '-c:v', 'hevc_nvenc', '-f', 'null', '-'],...
Would love to see this feature! Is there any roadmap of merging this PR? And is it possible to test this?
Yeah, would be great if we can add automatic testing! That would make PR merging so much easier. However, I asked Lewis a while ago if he could add the...