Project

ecm_videos

0.0
No commit activity in last 3 years
No release in over 3 years
Ecm::Videos Module.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Ecm::Videos¶ ↑

This project rocks and uses MIT-LICENSE.

When trying to upload new videos on heroku, I get the error message “errors while processing Ecm::Videos::Video ID <x>: Video Paperclip::Errors::NotIdentifiedByImageMagickError”. What can I do?¶ ↑

You have to add the ffmpeg buildpack to heroku:

heroku buildpacks:add https://github.com/HYPERHYPER/heroku-buildpack-ffmpeg.git --remote production

When trying to upload new videos on ubuntu, I get the error message “errors while processing Ecm::Videos::Video ID <x>: Video Paperclip::Errors::NotIdentifiedByImageMagickError”. What can I do?¶ ↑

Your system is missing ffmpeg. Install it:

sudo apt-get -y --purge remove ffmpeg
sudo apt-get -y --purge autoremove

sudo apt-get install ppa-purge
sudo ppa-purge ppa:jon-severinsson/ffmpeg

sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
# sudo apt-get dist-upgrade

sudo apt-get -y install ffmpeg

When trying to upload new videos on ubuntu, I get the error message “Av::UnableToDetect: Unable to detect any supported library”. What can I do?¶ ↑

Your system is missing libav-tools. Install it:

sudo apt-get install libav-tools