Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (68)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11853)

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