27 lines
961 B
Bash
27 lines
961 B
Bash
#!/bin/bash
|
|
|
|
sudo apt install curl -y
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
sudo apt update
|
|
sudo apt install -y build-essential \
|
|
libgstreamer1.0-dev \
|
|
libgstreamer-plugins-base1.0-dev \
|
|
libgstreamer-plugins-bad1.0-dev \
|
|
gstreamer1.0-plugins-base \
|
|
gstreamer1.0-plugins-good \
|
|
gstreamer1.0-plugins-bad \
|
|
gstreamer1.0-plugins-ugly \
|
|
gstreamer1.0-libav \
|
|
gstreamer1.0-tools \
|
|
gstreamer1.0-x \
|
|
gstreamer1.0-alsa \
|
|
gstreamer1.0-gl \
|
|
gstreamer1.0-gtk3 \
|
|
gstreamer1.0-qt5 \
|
|
gstreamer1.0-pulseaudio \
|
|
python3.12 \
|
|
python3.12-venv \
|
|
python3-pip \
|
|
ffmpeg
|