
Recherche avancée
Autres articles (13)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...)
Sur d’autres sites (5774)
-
Revision 39fe235032 : Merge "SSE2 high precision 32x32 forward DCT"
13 août 2013, par Jingning HanMerge "SSE2 high precision 32x32 forward DCT"
-
What does the word "context" usually mean in structures ?
8 juin 2015, par ArturPhilibinI’m trying to build an application using some of ffmpeg’s libraries and I’m noticing many data structures with the word "Context" in them.
You can see some here http://www.ffmpeg.org/doxygen/trunk/classes.html
I don’t understand the use of the word "context" in this.. context.
Any hints as to what it generally means ?
-
ffmpeg MAMP "dyld : Library not loaded" error
9 octobre 2013, par benedict_wI am using ffmpeg on Mac OSX 10.7.3 in MAMP through PHP's
exec()
command, I have an absolute path set to call ffmpeg, e.g./opt/local/bin/ffmpeg -i "/sample.avi"
But I receive the following error -
dyld: Library not loaded: /opt/local/lib/libjpeg.8.dylib Referenced from: /opt/local/lib/libopenjpeg.1.dylib Reason: Incompatible library version: libopenjpeg.1.dylib requires version 13.0.0 or later, but libJPEG.dylib provides version 12.0.0
N.B. ffmpeg was installed through Macports.
It works from the command line.
What to do ?
EDIT
I've reopened this - originally thought
shell_exec()
solved the issue, but infact it should be called differently - and I didn't realise until investigating further today. Here is my code using shell_exec and still giving the error above :$cmd = '/opt/local/bin/ffmpeg -h';
$cmd = escapeshellcmd($cmd) . ' 2>&1';
$output = shell_exec($cmd);
var_dump($output);