From d00ed4301c60d363f141b23525bf84b55af2e633 Mon Sep 17 00:00:00 2001 From: Seungmin Kim <8457324+ehfd@users.noreply.github.com> Date: Fri, 10 Nov 2023 14:26:25 +0900 Subject: [PATCH] Fix build pipelines --- Dockerfile.example | 9 +++++---- src/selkies_gstreamer/gstwebrtc_app.py | 2 ++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile.example b/Dockerfile.example index 99195890..0239edb1 100644 --- a/Dockerfile.example +++ b/Dockerfile.example @@ -97,8 +97,8 @@ Pin-Priority: -1" > /etc/apt/preferences.d/firefox-nosnap && \ git \ vim \ wget \ - unzip \ zip \ + unzip \ ssl-cert \ jq \ xvfb \ @@ -111,9 +111,7 @@ Pin-Priority: -1" > /etc/apt/preferences.d/firefox-nosnap && \ jstest-gtk \ coturn && \ rm -rf /var/lib/apt/lists/* && \ - update-alternatives --set x-www-browser /usr/bin/firefox && \ - # Extract NVRTC dependency, https://developer.download.nvidia.com/compute/cuda/redist/cuda_nvrtc/LICENSE.txt - 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' \; && mv -f libnvrtc* /opt/gstreamer/lib/x86_64-linux-gnu/ && cd /tmp && rm -rf /tmp/* + update-alternatives --set x-www-browser /usr/bin/firefox # Install Ubuntu 22.04 specific packages RUN if [ "${UBUNTU_RELEASE}"\> "20.04" ]; then apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y xcvt; fi && \ @@ -127,6 +125,9 @@ RUN chmod +x /tini # Install GStreamer distribution COPY --from=selkies-gstreamer /opt/gstreamer ./gstreamer +# Extract NVRTC dependency, https://developer.download.nvidia.com/compute/cuda/redist/cuda_nvrtc/LICENSE.txt +RUN 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' \; && mv -f libnvrtc* /opt/gstreamer/lib/x86_64-linux-gnu/ && cd /tmp && rm -rf /tmp/* + # Install web application COPY --from=selkies-web /usr/share/nginx/html ./gst-web diff --git a/src/selkies_gstreamer/gstwebrtc_app.py b/src/selkies_gstreamer/gstwebrtc_app.py index c0914c9b..8cc979fb 100644 --- a/src/selkies_gstreamer/gstwebrtc_app.py +++ b/src/selkies_gstreamer/gstwebrtc_app.py @@ -356,6 +356,8 @@ def build_video_pipeline(self): # encoder x264enc = Gst.ElementFactory.make("x264enc", "x264enc") x264enc.set_property("threads", 4) + x264enc.set_property("aud", False) + x264enc.set_property("b-adapt", False) x264enc.set_property("bframes", 0) x264enc.set_property("key-int-max", 0) x264enc.set_property("byte-stream", True)