github mediacms-io/mediacms v1.6

latest releases: v2.1.0, 2.0.0, v2.0...
2 years ago

This version

  • introduces Video Transcoding optimizations - #246 thanks to @multiflexi and @slhck
  • includes a few more tests, plus many STUB files for tests to be written.
  • pin on Django 3.1.12 to fix a security related issue with forms

Upgrade from previous versions:

  • Docker setup: get latest images and restart
    docker pull mediacms/mediacms
    docker-compose down && docker-compose up

  • Single server installation: remove ffmpeg and install latest version, otherwise transcoding of videos won't work well. MediaCMS now uses latest ffmpeg in all ways of installation

Taken form install.sh, this is what you have to do

apt-get remove -y ffmpeg
wget -q https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
mkdir -p tmp
tar -xf ffmpeg-release-amd64-static.tar.xz --strip-components 1 -C tmp
cp -v tmp/{ffmpeg,ffprobe,qt-faststart} /usr/local/bin
rm -rf tmp ffmpeg-release-amd64-static.tar.xz
echo "ffmpeg installed to /usr/local/bin"

Don't miss a new mediacms release

NewReleases is sending notifications on new releases.