Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (83)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • vp9 : add a 2-pass decoding mode, and add frame-mt support.

    30 novembre 2013, par Ronald S. Bultje
    vp9 : add a 2-pass decoding mode, and add frame-mt support.
    

    For a random 1080p sample, decoding time went from 9.7sec (1 threads)
    to 6.0sec (2 threads) and 5.2sec (4 threads) in 2-pass decoding mode.
    I don’t have any samples that use the parallelmode feature, but the
    gains should be higher.

    • [DH] libavcodec/vp9.c
  • avformat/moflex : Free AVPackets via av_packet_free() on error

    12 décembre 2021, par Andreas Rheinhardt
    avformat/moflex : Free AVPackets via av_packet_free() on error
    

    (This is not a leak as long as av_free() completely frees blank
    packets.)

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

    • [DH] libavformat/moflex.c
  • avcodec/alacenc : Don't free unnecessarily

    13 septembre 2020, par Andreas Rheinhardt
    avcodec/alacenc : Don't free unnecessarily
    

    The init function of the ALAC encoder calls its own close function
    if a call to ff_lpc_init() fails ; yet nothing has been allocated before
    that point (except extradata which is freed generically) and ff_lpc_init()
    can be expected to clean up after itself on error (the documentation does
    not say anything to the contrary and the current implementation can only
    fail if the only allocation fails, so there is nothing to clean up on
    error anyway), so this is unnecessary.

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

    • [DH] libavcodec/alacenc.c