From 5b3b3eaf892c1714cef6770e9660b44f3d8a8214 Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Thu, 6 Aug 2020 10:44:29 +0200 Subject: [PATCH] added codecs install script --- bin/install_codecs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bin/install_codecs diff --git a/bin/install_codecs b/bin/install_codecs new file mode 100755 index 0000000..93cfd53 --- /dev/null +++ b/bin/install_codecs @@ -0,0 +1,16 @@ +#!/bin/bash +[[ "$EUID" != 0 ]] && echo "Run as root!" && exit 1 +zypper refresh +zypper dist-upgrade --from packman --allow-downgrade --allow-vendor-change +zypper install --from packman \ + ffmpeg \ + gstreamer-plugins-bad \ + gstreamer-plugins-libav \ + gstreamer-plugins-ugly \ + libavcodec58 \ + libavdevice58 \ + libavfilter7 \ + libavformat58 \ + libavresample4 \ + libavutil56 \ + vlc-codecs