Recherche avancée

Médias (91)

Autres articles (42)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • 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 (7584)

  • fftools/ffmpeg : Take type limitations of AVFifo API into account

    20 novembre 2021, par Andreas Rheinhardt
    fftools/ffmpeg : Take type limitations of AVFifo API into account
    

    The types used by the AVFifo API are inconsistent :
    av_fifo_(space|size)() returns an int ; av_fifo_alloc() takes an
    unsigned, other parts use size_t. This commit therefore ensures
    that the size of the muxing_queue FIFO never exceeds INT_MAX.

    While just at it, also make sure not to call av_fifo_size()
    unnecessarily often.

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

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg_opt.c
  • avfilter/bwdif : account for chroma sub-sampling in min size calculation

    6 décembre 2023, par Cosmin Stejerean
    avfilter/bwdif : account for chroma sub-sampling in min size calculation
    

    The current logic for detecting frames that are too small for the
    algorithm does not account for chroma sub-sampling, and so a sample
    where the luma plane is large enough, but the chroma planes are not
    will not be rejected. In that event, a heap overflow will occur.

    This change adjusts the logic to consider the chroma planes and makes
    the change to all three bwdif implementations.

    Fixes #10688

    Signed-off-by : Cosmin Stejerean <cosmin@cosmin.at>
    Reviewed-by : Thomas Mundt <tmundt75@gmail.com>
    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavfilter/vf_bwdif.c
    • [DH] libavfilter/vf_bwdif_cuda.c
    • [DH] libavfilter/vf_bwdif_vulkan.c
  • mpegtsenc : Take max_delay into account when buffering multiple audio packets into...

    2 avril 2015, par Martin Storsjö
    mpegtsenc : Take max_delay into account when buffering multiple audio packets into one PES packet
    

    Make sure we don’t buffer up more than max_delay worth of data
    before writing a PES packet, even if pes_payload_size is set to
    a larger value.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mpegtsenc.c