Advanced search

Medias (91)

Other articles (103)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    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 (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 September 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

On other websites (10378)

  • h2645_parse: don’t overread AnnexB NALs within an avc stream

    7 July 2016, by Hendrik Leppkes
    h2645_parse: don’t overread AnnexB NALs within an avc stream
    

    We know the maximum size of an AnnexB NAL, signaling it as the maximum
    NAL size allows ff_h2645_extract_rbsp to determine the correct size.

    • [DH] libavcodec/h2645_parse.c
  • ffmpeg - Compare 2 AVFrames data

    17 May 2016, by zet voo

    I have 2 AVFrame pointers

    float compareFrame(AVFrame* firstFrame, AVFrame* secondFrame)
    {
       int i,j;
       const size_t image_size = height * width;
       size_t diffbytes = 0;

       for (i=0; i < height; i++)
       {
           for (j=0; j < width; j++) {
               size_t coord = firstFrame->linesize[0]*i + j;
               diffbytes += !!(firstFrame->data[0][coord] ^ secondFrame->data[0][coord]);
           }
       }
       const float percent_diff = (diffbytes / (float)image_size)*100.0;
       return percent_diff;
    }

    But it seems not correct when compare the 2 same AVFrames. How to determine two AVFrames have exactly the same data or not?

  • ffmpeg moving text drawtext

    8 April 2016, by BOB

    I’m using ffmpeg library to draw text on video in specific time and i’m success to do that Now i need to move the text from position to another and i can’t do that so can any one suggest me how to do that

    i’m using this command to move text from top to down but i can’t determine the x and Y to move from the x,y to specific x,y

    ffmpeg -i VideoInput.mp4 -vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test':x=(w-text_w)/2:y=w/50\*mod(t\,2):fontsize=65" -acodec copy outputVideo.mp4