Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (39)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5516)

  • Anomalie #3386 : Spip derrière Varnish : port non-standard dans l’URL ?

    15 février 2015, par Fil Up

    Mathieu MD a écrit :

    On pourrait forcer, dans la conf Varnish, un entête `X-Forwarded-Port` qui serait parsé directement par Spip.

    trop compliqué à mon avis ; il me semblerait plus simple d’avoir un define pour indiquer à SPIP qu’il peut sauter cette partie du code ; ou bien, pour la liste des ports à ignorer :
    define('_PORTS_STANDARDS', '80,443')

  • Revision 134384dd80 : Extend x32 check by also checking for __x86_64__. Currently, the configure scri

    3 décembre 2014, par Dim Temp

    Changed Paths :
     Modify /build/make/configure.sh



    Extend x32 check by also checking for __x86_64__.

    Currently, the configure script checks for x32 by testing just the
    __ILP32__ define. However, on "plain" i386, __ILP32__ can also be
    defined, for example by clang 3.5.0 and higher. (That gcc does not
    define it there, is another issue, but not for this tracker.)

    Therefore, extend the check by also checking for __x86_64__, which will
    also be defined for x32.

    BUG=887

    Change-Id : I90ac1d6843caff0416e1dd360c0be3dbaa85c2ae

  • Undefined method reference external library

    22 novembre 2014, par Pablo Gaviria

    I’m trying to use the FFmpeg/libavcodec to decode and encode some MP3 files using C and GCC compiler.

    According to the library documentation I must initialize the library with the follow sourcecode but I’m still getting this error :

    /tmp/cc2uLQ1v.o: On function `main':
    codigo.c:(.text+0x7): reference to `avcodec_register_all' undefined
    collect2: error: ld returned 1 exit status

    Here’s the source code :

    #include


    #include <libavutil></libavutil>opt.h>
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavutil></libavutil>channel_layout.h>
    #include <libavutil></libavutil>common.h>
    #include <libavutil></libavutil>imgutils.h>
    #include <libavutil></libavutil>mathematics.h>
    #include <libavutil></libavutil>samplefmt.h>

    #define INBUF_SIZE 4096
    #define AUDIO_INBUF_SIZE 20480
    #define AUDIO_REFILL_THRESH 4096



    int main(int argc, char *argv[])
    {
      avcodec_register_all();


       return 0;
    }

    And this the command that I’m using to compile under GCC

    gcc -I /root/ffmpeg_sources/ffmpeg -o codigo codigo.c