Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (79)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (5873)

  • Revision 17cfee3cb5 : fastssim : Add stdlib.h for malloc/free Change-Id : I4d734febc14c534dba20b67cf6bd

    6 août 2015, par Alex Converse

    Changed Paths :
     Modify /vpx_dsp/fastssim.c



    fastssim : Add stdlib.h for malloc/free

    Change-Id : I4d734febc14c534dba20b67cf6bd628996cc9ab7

  • libavformat/flvdec.c : free always the packet after a resync.

    28 septembre 2015, par Thierry Foucu
    libavformat/flvdec.c : free always the packet after a resync.
    

    In case of resync, always free the packet, but retry only if the resync
    did not get to the end of the file. Otherwise, there is a memory leak when the
    last packet in the file is corrupted.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/flvdec.c
  • avfilter/vf_paletteuse : Fix potential double-free of AVFrame

    27 janvier 2020, par Andreas Rheinhardt
    avfilter/vf_paletteuse : Fix potential double-free of AVFrame
    

    apply_palette() would free an AVFrame given to it only via an AVFrame *
    (and not via AVFrame **) in three of its four exists (namely in the
    normal path and in two error paths). So upon error the caller has no way
    to know whether the frame has already been freed or not ;
    load_apply_palette(), the only caller, opted to free the frame in this
    scenario.

    This commit changes this by making apply_palette not freeing the frame
    at all, which is left to load_apply_palette().

    Fixes Coverity issue #1452434.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_paletteuse.c