Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (97)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12233)

  • Revert "avcodec : Rename nvenc.c to nvenc_a.c, to avoid conflict with the other implem...

    6 juin 2015, par Philip Langdale
    Revert "avcodec : Rename nvenc.c to nvenc_a.c, to avoid conflict with the other implementation"
    

    This reverts commit d0d0913702358c61dfb9c5ac8b141cd203524869.

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/nvenc.c
  • lavfi/overlay_vaapi : set defalut alpha value as 1.0

    5 août 2022, par Fei Wang
    lavfi/overlay_vaapi : set defalut alpha value as 1.0
    

    The present default value of 0 will render the overlay video invisible.
    A default of 1.0 is consistent with most common use cases.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_overlay_vaapi.c
  • avcodec/movtextdec : Fix leaks of strings upon reallocation failure

    17 octobre 2020, par Andreas Rheinhardt
    avcodec/movtextdec : Fix leaks of strings upon reallocation failure
    

    Up until now, the 3GPP Timed Text decoder used av_dynarray_add()
    for a list of font entries, a structure which contains an allocated
    string. The font entries are owned by the pointers in the dynamic array
    and are therefore unsuitable for av_dynarray_add() which simply frees
    the array, but not the font entries and of course not the strings. The
    latter all leak if reallocating the dynamic array fails.

    This commit fixes this. It stops reallocating the array altogether :
    After all, the final number of elements (pending errors) is already
    known in advance.

    Furthermore, the font entries are now the entries of the new array,
    i.e. the font entries are no longer allocated separately. This also
    removes one level of indirection.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/movtextdec.c