Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (11175)

  • 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);      
       }
  • FFMPEG Script to make a clip loop according to audio length [duplicate]

    23 décembre 2020, par BitBit

    So, I have a 5 hour music audio and an around 1 minute video clip. I wanted a script that will merge audio and video clip, but the video clip will keep looping for the entire audio length.

    &#xA;

  • movenc : check that fps for tmcd is within encodable range.

    17 janvier 2013, par Michael Niedermayer

    movenc : check that fps for tmcd is within encodable range.