Recherche avancée

Médias (91)

Autres articles (97)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (16704)

  • avformat/rtpdec : explicit timestamp wraparound handling

    8 juin, par Clément Péron
    avformat/rtpdec : explicit timestamp wraparound handling
    

    Change delta_timestamp to int32_t and add explicit cast to handle
    RTP timestamp wraparound correctly. This fixes implementation-defined
    behavior when computing negative timestamp differences due to 32-bit
    wraparound.

    Signed-off-by : Clément Péron <peron.clem@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtpdec.c
  • Revision 29a325f78e : Expose params min-gf-interval/max-gf-interval Adds two new vp9 parameters —min

    2 avril 2015, par Debargha Mukherjee

    Changed Paths :
     Modify /test/test.mk


     Add /test/vp9_arf_freq_test.cc


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_ratectrl.h


     Modify /vp9/vp9_cx_iface.c


     Modify /vpx/vp8cx.h


     Modify /vpxenc.c



    Expose params min-gf-interval/max-gf-interval

    Adds two new vp9 parameters —min-gf-interval and —max-gf-interval
    to enable testing based on frequency of alt-ref frames.

    Also adds a unit-test to test enforcement of min-gf-interval.

    For both these parameters the default value is 0, which indicates
    they are picked by the encoder, based on resolution and framerate
    considerations. If they are greater than zero, the specified
    parameter is honored.

    (Additional note by paulwilkins)
    Note that there is a slight oddity in that key frames are also GFs and
    considered part of GF only group. However they are treated as not
    being part of an arf group because for arf groups the previous GF is
    assumed to be the terminal or overlay frame for the previous group.

    (end note)

    Change-Id : Ibf0c30b72074b3f71918ab278ccccc02a95a70a0
    (cherry picked from commit 98526433737e388ebe576e9f7631b6763e58a2f9)

  • avcodec/osq : Fix signed integer overflow in update_stats()

    16 juin, par Michael Niedermayer
    avcodec/osq : Fix signed integer overflow in update_stats()
    

    Fixes : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
    Fixes : 410109093/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6550900028276736

    Note, none of the available osq files uses update_stats(), this change may fix or break
    files using coding_mode == 2. The code prior looks wrong though

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/osq.c