Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (65)

  • 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

  • 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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (9428)

  • avcodec/qsvenc : Fix memleaks upon allocation errors

    9 septembre 2021, par Andreas Rheinhardt
    avcodec/qsvenc : Fix memleaks upon allocation errors
    

    Fixes leaks in case the allocation of the H.264-specific stuff fails.
    Fixes Coverity issues #1442911 and #1442914.

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

    • [DH] libavcodec/qsvenc.c
  • avformat : call AVOutputFormat->deinit() when freeing the context

    19 octobre 2019, par James Almer
    avformat : call AVOutputFormat->deinit() when freeing the context
    

    Despite the doxy stating that it's called when the muxer is destroyed,
    this was not true in practice. It's only called by av_write_trailer()
    and on init() failure.

    An AVFormatContext may be closed without writing the trailer if errors
    ocurred while muxing packets, so in order to prevent memory leaks, it
    should effectively be called when freeing the muxer.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c
    • [DH] libavformat/utils.c
  • avformat/mov : Fix memleak

    16 septembre 2019, par Andreas Rheinhardt
    avformat/mov : Fix memleak
    

    When the mov/mp4 demuxer encounters an error during decrypting a packet,
    it returns the error, yet doesn't free the packet, so that the packet
    leaks. This has been fixed in this commit.

    Fixes the memleaks from ticket #8150.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c