This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ffmpeg -rtsp_transport tcp \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/102 \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/202 \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/302 \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/402 \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/502 \ | |
-i rtsp://smartiptv:PASSWORD@192.168.2.3/Streaming/Channels/602 \ | |
-filter_complex " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Automatically compile and install FFMPEG with NVIDIA hardware acceleration on Debian 12 | |
# Includes cuvid, cuda, nvenc, nvdec, and non-free libnpp | |
# Based on: | |
# https://www.tal.org/tutorials/ffmpeg_nvidia_encode | |
# https://developer.nvidia.com/blog/nvidia-ffmpeg-transcoding-guide/ | |
# Abort on error | |
set -e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Taken from: https://red-full-moon.com/make-hevc-qsv-env-first-half/ | |
sudo usermod -a -G render robp2175 | |
sudo usermod -a -G video robp2175 | |
# 環境の最新化 | |
sudo apt update | |
sudo apt dist-upgrade | |
# 必要パッケージのインストール | |
sudo apt install cmake make autoconf automake libtool g++ bison libpcre3-dev pkg-config libtool libdrm-dev xorg xorg-dev openbox libx11-dev libgl1-mesa-glx libgl1-mesa-dev libpciaccess-dev libfdk-aac-dev libvorbis-dev libvpx-dev libx264-dev libx265-dev ocl-icd-opencl-dev pkg-config yasm libx11-xcb-dev libxcb-dri3-dev libxcb-present-dev libva-dev libmfx-dev intel-media-va-driver-non-free opencl-clhpp-headers |