Recherche avancée

Médias (91)

Autres articles (98)

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

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

Sur d’autres sites (12748)

  • ffmpeg - Compare 2 AVFrames data

    17 mai 2016, par 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 ?

  • Revision 5e766ccee0 : Use rate/distortion thresholds to control non-RD partition search Compare the e

    15 octobre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_speed_features.c



    Use rate/distortion thresholds to control non-RD partition search

    Compare the estimated rate and distortion to the thresholds scaled
    according to the operating block size and determine if further
    split partition search will be run. The compression performance of
    speed -5 is changed by -0.074%. The encoding speed is 10% - 15%
    faster.

    vidyo1 720p
    16545 b/f, 40.492 dB, 11475 ms -> 16535 b/f, 40.486 dB, 10100 ms

    nik720p
    16624 b/f, 36.310 dB, 10071 ms -> 16617 b/f, 36.313 dB, 8346 ms

    Change-Id : Ic9197ab5761279ae55d2fb7813b2af0e0db497b8

  • mov : Wrap stsc index and count compare in a separate function

    20 juillet 2016, par Vittorio Giovara
    mov : Wrap stsc index and count compare in a separate function
    
    • [DBH] libavformat/mov.c