10 lines
323 B
Bash
Executable File
10 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing FFmpeg extras (thumbnailer + GStreamer codecs)..."
|
|
sudo pacman -S --noconfirm --needed \
|
|
ffmpeg ffmpegthumbnailer \
|
|
gst-libav gst-plugins-good gst-plugins-bad gst-plugins-ugly
|
|
log "FFmpeg extras installed."
|