Hardware Encoder Support
OvenMediaEngine Enterprise 0.16.4.0-1 버전부터 다양한 Hardware-Accelerated Video Encoding 기능을 사용할 수 있습니다.
지원 OS 및 드라이버 버전
Device
Support OS
Driver Verion
지원 코덱
Device
Decoder
Filter
Encoder
드라이버 설치 및 확인 방법
NVIDIA 그래픽 드라이버
Ubuntu Linux 22.04 / 24.04
sudo apt-get -y update
sudo apt-get -y install --no-install-recommends apt-utils lshw
sudo apt-get -y install --no-install-recommends keyboard-configuration
sudo apt-get -y install --no-install-recommends ubuntu-drivers-common
sudo apt-get -y install --no-install-recommends gnupg2 ca-certificates software-properties-common
# Uninstalling a previously installed NVIDIA Driver
sudo apt-get -y remove --purge nvidia-*
sudo apt-get -y autoremove
sudo apt-get -y update
# Remove the nouveau driver.
# If the nouveau driver is in use, the nvidia driver cannot be installed.
USE_NOUVEAU=`sudo lshw -class video | grep nouveau`
if [ ! -z "$USE_NOUVEAU" ]; then
# Disable nouveau Driver
echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf
echo "blacklist lbm-nouveau" >> /etc/modprobe.d/blacklist.conf
echo "options nouveau modeset=0" >> /etc/modprobe.d/blacklist.conf
echo "alias nouveau off" >> /etc/modprobe.d/blacklist.conf
echo "alias lbm-nouveau off" >> /etc/modprobe.d/blacklist.conf
sudo update-initramfs -u
echo "Using a driver display nouveau.Remove the driver and reboot.Reboot and installation script to rerun the nvidia display the driver to complete the installation."
sleep 5s
reboot
fi
# Custom Driver Version
NVIDIA_DRIVER_VERSION=
# Install nvidia drivers and cuda-toolit
sudo add-apt-repository -y ppa:graphics-drivers/ppa
sudo apt -y update
if [ -z "$NVIDIA_DRIVER_VERSION" ]
then
# installation with recommended version
sudo ubuntu-drivers autoinstall
else
# installation with specific version
sudo apt-get install -y --no-install-recommends nvidia-driver-${NVIDIA_DRIVER_VERSION}
fi
sudo apt-get install -y --no-install-recommends nvidia-cuda-toolkitRocky Linux (검증 필요)
드라이버 설치 확인
XILINX Video SDK 3.0 드라이버
Hardware-Accelerated Video Encoding 활성화 확인 방법
Last updated