Recherche avancée

Médias (91)

Autres articles (58)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

Sur d’autres sites (6279)

  • How to correctly link ffmpeg to static build "g++ -static" ?

    22 juillet 2014, par user2212461

    I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :

    g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
    /path/to/libavformat.a /path/to/libavcodec.a

    but get the following list of errors, although I configured ffmpeg with —disable-libopus :

    libavcodec/opusdec.c:376: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:222: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:163: error: undefined reference to 'swr_init'
    libavcodec/opusdec.c:169: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:236: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:117: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:408: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:557: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:579: error: undefined reference to 'swr_free'
    libavcodec/opusdec.c:629: error: undefined reference to 'swr_alloc'

    What am I doing wrong here ?

  • How to correctly link static ffmpeg build using g++ ?

    22 juillet 2014, par user2212461

    I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :

    g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
    /path/to/libavformat.a /path/to/libavcodec.a

    but get a relatively large list of errors looking like :

    ....
    libavcodec/cscd.c:91: error: undefined reference to 'uncompress'
    libavcodec/flashsv.c:191: error: undefined reference to 'inflateReset'
    ...
    libavcodec/vaapi.c:131: error: undefined reference to 'vaMapBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'

    What am I doing wrong here ?

  • Unable to link QtFFmpegWrapper sample on Win7 with VS 2012

    20 juillet 2014, par mschwarz

    I am trying to incorporate QtFFmpegWrapper in my program, but both my program and the provided sample won’t link with ffmpeg :

    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_init referenced in function "protected: bool __thiscall QVideoEncoder::initCodec(void)" (?initCodec@QVideoEncoder@@IAE_NXZ)
    QVideoDecoder.obj:-1: Error: LNK2001: unresolved external symbol _avcodec_init
    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_thread_init referenced in function "public: bool __thiscall QVideoEncoder::createFile(class QString,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int)" (?createFile@QVideoEncoder@@QAE_NVQString@@IIIII@Z)
    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_open referenced in function "public: bool __thiscall QVideoEncoder::createFile(class QString,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int)" (?createFile@QVideoEncoder@@QAE_NVQString@@IIIII@Z)

    and 10 or so more like these ...

    Why do these pop up when linking ? The libs are all there and found, it just seems like the linker has issues with them ...

    I use the following setup for my project :

    Everything is 32Bit.