diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-09-20 03:39:15 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-09-20 03:39:15 +0200 |
commit | 919890b7b2eb16fc57439e6c9b8b28183febc467 (patch) | |
tree | dd8bb3f83e1f8edd9cfe9b51df5fba41356fe91f /install_ubuntu.sh | |
parent | 9f2ddf380291f34ce03fd9af3c10751192a884c2 (diff) |
Fix replay video/audio desync, fix dummy audio when dropping audio input, give each audio stream a new name so it can be replaced with pipewire graphs
Diffstat (limited to 'install_ubuntu.sh')
-rwxr-xr-x | install_ubuntu.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install_ubuntu.sh b/install_ubuntu.sh index e443c4c..251da8c 100755 --- a/install_ubuntu.sh +++ b/install_ubuntu.sh @@ -15,11 +15,11 @@ apt-get -y install build-essential nvidia-cuda-dev\ libglew-dev libglfw3-dev\ libpulse-dev -dependencies="glew libavcodec libavformat libavutil x11 xcomposite glfw3 libpulse-simple libswresample" +dependencies="glew libavcodec libavformat libavutil x11 xcomposite glfw3 libpulse libswresample" includes="$(pkg-config --cflags $dependencies) -I/opt/cuda/targets/x86_64-linux/include" libs="$(pkg-config --libs $dependencies) /usr/lib/x86_64-linux-gnu/stubs/libcuda.so -ldl -pthread -lm" -g++ -c src/sound.cpp -O2 $includes -DPULSEAUDIO=1 -g++ -c src/main.cpp -O2 $includes -DPULSEAUDIO=1 +g++ -c src/sound.cpp -O2 $includes +g++ -c src/main.cpp -O2 $includes g++ -o gpu-screen-recorder -O2 sound.o main.o -s $libs install -Dm755 "gpu-screen-recorder" "/usr/local/bin/gpu-screen-recorder" |