While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- New US Congress bill proposal requires all operating system providers to verify ages [updated]
- Pick up some quality adventure games in the Humble Golden Tales Bundle
- Amazon Luna rips out game stores, game purchases and third-party subscriptions
- Dune: Awakening to get self-hosted servers, plus they're splitting PvE and PvP
- Portal 2: Community Edition arrives in Beta on April 17
- > See more over 30 days here
Recently Updated
- Proton/Wine Games Locking Up
- Caldathras - video buffer overflow
- LoudTechie - Retrieve root (Desktop mode) without factory reset
- LoudTechie - The Great Android lockdown of 2026.
- grigi - New Desktop Screenshot Thread
- DoctorJunglist - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Can you suggest a good app to make a video to record the screen while gaming with lose minor FPS please? I tryed simplescreenrecorder, but I lose 50 fps while recording.
!link
Last edited by Vinouch on 21 Sep 2020 at 5:55 pm UTC
To minimize the fps loss I suggest lowering the quality a bit, don't use any compression (this will minimize cpu usage but produce large files. Also if you have 2 drives, don't save the video on the same drive as the game you're recording as this will create a bit of stutter (especially if it's an HDD).
Simplescreenrecorder is not bad, it's what I use for my game recordings with very minimal frame loss. However this is possible due to high thread count and carefully dividing the load using the 'taskset' command.
OBS is also very good and is a much more featured program than SSR.
Last edited by Avehicle7887 on 22 Sep 2020 at 10:38 pm UTC
:smile:
ffmpeg -vaapi_device /dev/dri/renderD128 -f x11grab -video_size 1920x1080 -i :0 -vf 'hwupload,scale_vaapi=format=nv12' -c:v h264_vaapi -b:v 15M -preset superfast '/home/username/screenrecord.mp4'Last edited by Vinouch on 23 Sep 2020 at 1:49 pm UTC
(Also works on Wayland and in virtual terminals!)
A small GUI to record in VAAPI:
https://github.com/Philippe734/tiny.vaapi.recorder
:smile:
https://github.com/Philippe734/tiny.vaapi.recorder/blob/main/tiny.vaapi.recorder.sh
Also, I wonder what's the method in the Wayland session where x11grab is not an option. I suppose there must be some ffmpeg / Pipewire integration for that?
Last edited by Shmerl on 5 Oct 2020 at 9:32 pm UTC
You might want to remove the preset option though. It has no effect with vaapi, it's a libx264 setting.
You might also want to experiment with using constant quality in lossless mode (if you don't mind large files) using -qp 0 instead of VBR. I seem to recall getting better results with that, but it probably varies from system to system.
Last edited by Shmerl on 5 Oct 2020 at 9:52 pm UTC
https://github.com/obsproject/obs-studio/pull/1758