Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (74)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (16135)

  • avutil/dict : Fix memleak when using AV_DICT_APPEND

    13 septembre 2022, par Andreas Rheinhardt
    avutil/dict : Fix memleak when using AV_DICT_APPEND
    

    If a key already exists in an AVDictionary and the AV_DICT_APPEND flag
    is set, the old entry is at first discarded from the dictionary, but
    a pointer to the value is kept. Lateron enough memory to store the
    appended string is allocated ; should this allocation fail, the old string
    is not freed and hence leaks. This commit changes this by moving
    creating the combined value to an earlier point in the function,
    which also ensures that the AVDictionary is unchanged in case of errors.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/dict.c
  • avfilter/vf_vpp_qsv : Fix leak of AVFilterFormats on error

    7 août 2020, par Andreas Rheinhardt
    avfilter/vf_vpp_qsv : Fix leak of AVFilterFormats on error
    

    The vpp_qsv's query_formats function allocated two AVFilterFormats,
    before storing them permanently. If storing the first of them fails,
    the function simply returns and the second leaks. This has been fixed by
    only allocating the second AVFilterFormats structure after the first one
    has been successfully stored.

    Fixes Coverity issue #1422231.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_vpp_qsv.c
  • avformat/hlsenc : Fix memleak when deleting old segments

    8 avril 2020, par Andreas Rheinhardt
    avformat/hlsenc : Fix memleak when deleting old segments
    

    if the directory name of the segments contains "%v".

    This memleak is caused by masking the pointer that will eventually
    be freed by a variable of the same name in a smaller scope.
    Therefore the pointer that gets freed is always NULL when it is
    freed and the allocated data leaks.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/hlsenc.c