pawds / setup.sh
yonagush's picture
Rename ai_studio_code.sh to setup.sh
774418f verified
raw
history blame contribute delete
230 Bytes
#!/bin/bash
# This script installs FFmpeg and other system dependencies required for video processing.
echo "Installing FFmpeg..."
sudo apt update
sudo apt install -y ffmpeg libsm6 libxext6
echo "FFmpeg installed successfully."