
Recherche avancée
Autres articles (68)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (9880)
-
Checkinstall equivalent on Red Hat (Santiago)
29 octobre 2013, par DaliusI'm not familiar with Red Hat, never used it before.
I'm installing ffmpeg from source, following this guide https://trac.ffmpeg.org/wiki/CentosCompilationGuide
On Debian, after using make to compile ffmpeg, I would use checkinstall to install ffmpeg for all users. How can I do the same on Red Hat ?
-
Evolution #2999 : Mettre à jour _IS_BOT
15 mai 2013, par b bRedmine ne semble pas motivé à faire son taf, je colle donc des liens vers les révisions associées :
http://core.spip.org/projects/spip/repository/revisions/20520
http://core.spip.org/projects/spip/repository/revisions/20523
-
Installing ffmpeg on Heroku with Go (Golang) app
17 novembre 2015, par Kevin CantwellI have a Go app that uses ffmpeg bindings that I’d like to deploy on Heroku. I am able to install ffmpeg successfully using ddollar’s multi buildpack in conjunction with shunjikonishi’s ffmpeg buildpack and kr’s go buildpack. However, no matter what I try, the app fails on the call to
pkg-config
with the following output :$ git push heroku master
Counting objects: 22, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (20/20), done.
Writing objects: 100% (22/22), 2.32 KiB | 0 bytes/s, done.
Total 22 (delta 9), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Fetching set buildpack https://github.com/ddollar/heroku-buildpack-multi... done
remote: -----> Multipack app detected
remote: =====> Downloading Buildpack: https://github.com/shunjikonishi/heroku-buildpack-ffmpeg
remote: =====> Detected Framework: ffmpeg
remote: -----> Install ffmpeg
remote: DOWNLOAD_URL = http://flect.github.io/heroku-binaries/libs/ffmpeg.tar.gz
remote: exporting PATH and LIBRARY_PATH
remote: =====> Downloading Buildpack: https://github.com/kr/heroku-buildpack-go.git
remote: =====> Detected Framework: Go
remote: -----> Checking Godeps/Godeps.json file.
remote: -----> Installing go1.5... done
remote: -----> Running: godep go install -tags heroku ./...
remote: # pkg-config --cflags libavcodec libavformat libavutil libswscale
remote: Package libavcodec was not found in the pkg-config search path.
remote: Perhaps you should add the directory containing `libavcodec.pc'
remote: to the PKG_CONFIG_PATH environment variable
remote: No package 'libavcodec' found
remote: Package libavformat was not found in the pkg-config search path.
remote: Perhaps you should add the directory containing `libavformat.pc'
remote: to the PKG_CONFIG_PATH environment variable
remote: No package 'libavformat' found
remote: Package libavutil was not found in the pkg-config search path.
remote: Perhaps you should add the directory containing `libavutil.pc'
remote: to the PKG_CONFIG_PATH environment variable
remote: No package 'libavutil' found
remote: Package libswscale was not found in the pkg-config search path.
remote: Perhaps you should add the directory containing `libswscale.pc'
remote: to the PKG_CONFIG_PATH environment variable
remote: No package 'libswscale' found
remote: pkg-config: exit status 1
remote: godep: go exit status 2
remote:
remote: ! Push rejected, failed to compile Multipack app
remote:
remote: Verifying deploy...
remote:
remote: ! Push rejected to myvideoapp.
remote:
To https://git.heroku.com/myvideoapp.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/myvideoapp.git'The command that fails is
pkg-config --cflags libavcodec libavformat libavutil libswscale
. However, when I run that command in a bash console it outputs-I/app/vendor/ffmpeg/include
, which is what I’d expect.I believe that when the Go buildpack builds, it loses track of the ffmpeg package configuration information somehow. These are my config vars for the app :
$ heroku config -s
CGO_CFLAGS=-I/app/vendor/ffmpeg/include
PKG_CONFIG_PATH=vendor/ffmpeg/lib/pkgconfigMy question is : How do I get past this error ? Clearly the answer is related to the PKG_CONFIG_PATH variable, but I’m super confused on this one.