Vladislav Yarmak 5182417990
strict mode of bash operation: pipefail, stop on errors, stop on undefined variables
fixes https://www.shellcheck.net/wiki/SC2181 -- Check exit code directly with e.g...

fixes nvidia-smi exit code checking bug. without pipefail check always successful because of `head` command.
2019-01-05 00:36:48 +02:00
2018-12-26 18:43:19 +02:00
2019-01-04 21:59:11 +02:00

nvidia-patch

This patch removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.

Requirements:

Tested on Ubuntu 18.04 LTS (GNU/Linux 4.15.0-23-generic x86_64)

step-by-step :

Download driver

https://download.nvidia.com/XFree86/Linux-x86_64/410.78/NVIDIA-Linux-x86_64-410.78.run

Install driver (410.78)

mkdir /opt/nvidia && cd /opt/nvidia
wget https://download.nvidia.com/XFree86/Linux-x86_64/410.78/NVIDIA-Linux-x86_64-410.78.run
chmod +x ./NVIDIA-Linux-x86_64-410.78.run
./NVIDIA-Linux-x86_64-410.78.run

Check driver

nvidia-smi

Patch libnvidia-encode.so (with backup)

bash ./patch.sh

Silent patch libnvidia-encode.so

bash ./patch.sh -s

Rollback libnvidia-encode.so (restore from backup)

bash ./patch.sh -r

See also

https://habr.com/post/262563/

If you experience CreateBitstreamBuffer failed: out of memory (10), then you have to lower buffers number used for every encoding session. If you are using ffmpeg, see option -surfaces ("Number of concurrent surfaces") and try value near -surfaces 8.

Description
No description provided
Readme 3.9 MiB
Languages
Python 53.9%
Shell 33.9%
C 4%
C++ 3.8%
HTML 2.8%
Other 1.6%