Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11233)

  • Revision 3b7794f9eb : Merge "BITSTREAM - "update_map" SEMANTICS BROKEN IN 398ddafb629b7f49cf255bf09d3e

    4 octobre 2013, par Dmitry Kovalev

    Merge "BITSTREAM - "update_map" SEMANTICS BROKEN IN
    398ddafb629b7f49cf255bf09d3e38b4abd0bb95"

  • What causes "double free or corruption" and "invalid pointer" in javacpp - ffmpeg ?

    7 septembre 2016, par Jiro Matchonson

    I use https://github.com/bytedeco/javacpp-presets/tree/master/ffmpeg

    <dependency>
         <groupid>org.bytedeco.javacpp-presets</groupid>
         <artifactid>ffmpeg</artifactid>
         <version>3.1.2-1.2</version>
    </dependency>

    When i am calling avformat_open_input/avformat_close_input i randomly (never at first call) get those errors :

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (out): 0x00007fe79c194aa0

    or

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (!prev): 0x00007fe51c3ffb60

    or

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (fasttop): 0x00007fcdc40fe4a0

    I cant find out how to solve this, please help.

    There is my implementation :

       private static void registerComponents() {
           if (!componentsRegistered) {
               componentsRegistered = true;
               av_register_all();
           }
       }

       public static void decodeFrame(ByteBuffer frameData) {
           registerComponents();

           AVFormatContext pFormatCtx = avformat_alloc_context();
           int i, videoStream;
           AVCodecContext pCodecCtx = null;
           AVCodec pCodec = null;
           AVFrame pFrame = null;
           AVFrame pFrameRGB = null;

           int[] frameFinished = new int[1];
           int numBytes;
           BytePointer buffer = null;

           AVDictionary    optionsDict = null;
           SwsContext      sws_ctx = null;

           AVIOContext ioContext = avio_alloc_context(new BytePointer(frameData), frameData.capacity(), 0, null, null, null, null);
           pFormatCtx.pb(ioContext);

           if (avformat_open_input(pFormatCtx, "", null, null) &lt; 0) {
               logger.error(MarkerFactory.getMarker("ffmpeg"), "Problem with load video from memory.");
               return;
           }

          avformat_close_input(pFormatCtx);      
       }
  • doc/muxers/hls : change "can used" to "can be used"

    2 janvier 2014, par Stefano Sabatini
    doc/muxers/hls : change "can used" to "can be used"
    

    Spotted-by : Alexander Strasser <eclipse7@gmx.net>

    • [DH] doc/muxers.texi