Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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, par

    We 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, par

    PHP5 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 Niedermayer
    avformat/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>

    • [DH] libavformat/segafilm.c
  • How to use libraries ".lib" and ".a" files in gcc

    16 décembre 2013, par Blue Sky

    I have a simple C code that uses some functions of libavcodec in ffmpeg. I try to compile the code with gcc (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 and libavcodec.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 Tom

    I'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