MediaCMS logo

MediaCMS

Modern, fully featured open source video and media CMS

Alternative to: youtube, vimeo, wistia


About Versions (74)

v1.6

2021-08-20

This version

  • introduces Video Transcoding optimizations - https://github.com/mediacms-io/mediacms/pull/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"