Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (32)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

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

Sur d’autres sites (7123)

  • avcodec/xvmc : Remove header

    7 mars 2024, par Andreas Rheinhardt
    avcodec/xvmc : Remove header
    

    Forgotten in a12cd3be98e8aba6e74274192ec6532988aa9444.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/xvmc.h
  • avcodec/movtextdec : Fix leaks on (re)allocation failure

    17 octobre 2020, par Andreas Rheinhardt
    avcodec/movtextdec : Fix leaks on (re)allocation failure
    

    Up until now, the 3GPP Timed Text decoder used av_dynarray_add()
    for a list of style entries. Said entries are individually allocated
    and owned by the pointers in the dynamic array and are therefore
    unsuitable for av_dynarray_add() which simply frees the array,
    but not the entries on error. In this case the intended new entry
    also leaks because it has been forgotten to free it.

    This commit fixes this. It is now allocated in one go and not
    reallocated multiple times (and it won't be overallocated any more).
    After all, the final number of elements (pending errors) is already
    known in advance.

    Furthermore, the style entries are now the entries of the new array,
    i.e. they 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
  • avcodec/ac3_tab : Zero-terminate ff_ac3_sample_rate_tab

    11 avril 2020, par Andreas Rheinhardt
    avcodec/ac3_tab : Zero-terminate ff_ac3_sample_rate_tab
    

    This is required to use it as an AVCodec.supported_samplerates array.
    Adding the sentinel has been forgotten in 4679a474.
    Without it e.g. the FATE-test ffmpeg-filter_complex_audio fails with ASAN.

    Reviewed-by : Carl Eugen Hoyos <ceffmpeg@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/ac3tab.c
    • [DH] libavcodec/ac3tab.h