Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (42)

  • 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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

Sur d’autres sites (4343)

  • avcodec/cfhdenc : Fix leaks on allocation errors

    14 septembre 2020, par Andreas Rheinhardt
    avcodec/cfhdenc : Fix leaks on allocation errors
    

    The CineForm HD encoder attempts to allocate several buffers in its init
    function ; yet if only some of these allocations succeed, the
    successfully allocated buffers leak. This is fixed by setting the
    FF_CODEC_CAP_INIT_CLEANUP flag.

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

    • [DH] libavcodec/cfhdenc.c
  • libavformat/movenc : mov : added subtitle codec tags to codec tag list

    25 février 2019, par Paweł Wegner
    libavformat/movenc : mov : added subtitle codec tags to codec tag list
    

    This fixes avformat_query_codec incorrectly returning 0 for
    mov container and mov_text subtitles.

    Signed-off-by : Paweł Wegner <pawel.wegner95@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
  • avformat/utils : Fix undefined NULL + 0

    14 février 2021, par Andreas Rheinhardt
    avformat/utils : Fix undefined NULL + 0
    

    This is undefined behaviour in C, so use data = len ? data + len : data
    instead of data += len. GCC optimizes the branch away in this case ;
    Clang unfortunately doesn't.

    Fixes ticket #8592.

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

    • [DH] libavformat/utils.c