mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
## Description **What(what issue does this code solve/what feature does it add):** So, we have our simple compositor (`gamescope`), now we need a way to capture audio and video. And i have found this "performant" **_citation needed_ ** and minimal screen recorder, which has the capability to even capture 30 second screen snippets. **How(how does it solve it):** 1. Add a minimal step inside the DockerFile to build and install the gpu-screen-recorder ## Required Checklist: - [ ] I have added any necessary documentation and comments in my code (where appropriate) - [ ] I have added tests to make sure my code runs in all contexts ## Further comments
56 lines
1.8 KiB
Docker
56 lines
1.8 KiB
Docker
# This builds and updates the screen recorder we use on Netris
|
|
# From https://git.dec05eba.com/gpu-screen-recorder
|
|
FROM ubuntu:23.10
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# To run /usr/bin/gpu-screen-recorder.
|
|
# Add this to your runtime
|
|
# docker run --rm --cap-add SYS_ADMIN --cap-add SYS_NICE netris/gpu-screen-recorder
|
|
|
|
#Build and install gpu-screen-recorder
|
|
#TODO: Install ffmpeg
|
|
RUN apt-get update -y \
|
|
&& apt-get install -y \
|
|
curl \
|
|
unzip \
|
|
git \
|
|
build-essential \
|
|
ninja-build \
|
|
gcc \
|
|
meson \
|
|
cmake \
|
|
ccache \
|
|
bison \
|
|
equivs \
|
|
ca-certificates\
|
|
libcap2-bin \
|
|
libllvm15 \
|
|
libavcodec-dev \
|
|
libavformat-dev \
|
|
libavutil-dev \
|
|
libx11-dev \
|
|
libxcomposite-dev \
|
|
libxrandr-dev \
|
|
libxfixes-dev \
|
|
libpulse-dev \
|
|
libswresample-dev \
|
|
libavfilter-dev \
|
|
libva-dev \
|
|
libcap-dev \
|
|
libdrm-dev \
|
|
libgl-dev \
|
|
libegl-dev \
|
|
libwayland-dev \
|
|
libwayland-egl-backend-dev \
|
|
wayland-protocols \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
#Install Cuda
|
|
&& cd /tmp && curl -fsSL -o nvidia_cuda_nvrtc_linux_x86_64.whl "https://developer.download.nvidia.com/compute/redist/nvidia-cuda-nvrtc/nvidia_cuda_nvrtc-11.0.221-cp36-cp36m-linux_x86_64.whl" \
|
|
&& unzip -joq -d ./nvrtc nvidia_cuda_nvrtc_linux_x86_64.whl && cd nvrtc && chmod 755 libnvrtc* \
|
|
&& find . -maxdepth 1 -type f -name "*libnvrtc.so.*" -exec sh -c 'ln -snf $(basename {}) libnvrtc.so' \; \
|
|
&& mkdir -p /usr/local/nvidia/lib && mv -f libnvrtc* /usr/local/nvidia/lib \
|
|
&& echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf && echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf \
|
|
&& git clone https://repo.dec05eba.com/gpu-screen-recorder && cd gpu-screen-recorder \
|
|
&& chmod +x ./build.sh ./install.sh \
|
|
&& ./install.sh |