
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (53)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 : (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (6808)
-
avformat/segafilm : drop song and dance, this seems not to do anything anymore since...
7 janvier 2014, par Michael Niedermayeravformat/segafilm : drop song and dance, this seems not to do anything anymore since a long time
Fixes use of uninitialized memory
Partly fixes ; msan_uninit-mem_7fb7d24780d0_2744_R03T.CAK
Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
How to use libraries ".lib" and ".a" files in gcc
16 décembre 2013, par Blue SkyI have a simple C code that uses some functions of
libavcodec
inffmpeg
. I try to compile the code withgcc
(in Windows using mingw) as follows :gcc -o mycode mycode.c
but I get a lot of errors like "undefined reference to av_free". I know that these functions are defined in the libraries of ffmpeg. I do access to files like
avcodec.lib
andlibavcodec.dll.a
but I don't know how to use them with gcc so that I can compile and make my file. Any idea how to solve this problem ? -
ffmpeg in C++ "av_register_all not declared in this scope"
4 juillet 2013, par TomI'm trying to compile this simple program in C++ (in Code Blocks) :
#ifdef __cplusplus
extern "C" {
#endif
#include <libavutil></libavutil>avutil.h>
#include <libavcodec></libavcodec>avcodec.h>
#ifdef __cplusplus
};
#endif
int main(int argc, char *argv[]) {
av_register_all();
return 0;
}However I keep getting the error message :
|11|error : ‘av_register_all’ was not declared in this scope|Other people seem to have had this problem and adding the
extern "C"
section seems to have solved it form them but not me. Does anyone have any suggestions ?Thanks