#!/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."