Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (64)

  • 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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (8542)

  • avformat/dashdec : Don't leave representation in inconsistent state on error

    7 septembre 2020, par Andreas Rheinhardt
    avformat/dashdec : Don't leave representation in inconsistent state on error
    

    This currently doesn't cause any trouble, because the only caller did
    not clean up the representation upon error at all ; but fixing this is
    a prerequisite for doing so.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/dashdec.c
  • avcodec/sheervideo : Don't leave context in inconsistent state upon error

    10 octobre 2020, par Andreas Rheinhardt
    avcodec/sheervideo : Don't leave context in inconsistent state upon error
    

    This has happened if the format changed midstream and if the new packet
    is so small that it is instantaneously rejected : In this case the VLC
    tables were for the new format, although the context says that they are
    still the ones for the old format. It can also happen if the format
    changed midstream and the allocation of the new tables fails. If the
    next packet is a packet for the old format, the decoder thinks it
    already has the correct VLC tables, leading to a segfault.

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

    • [DH] libavcodec/sheervideo.c
  • avformat/utils : Always leave parse_pkt in blank state, avoid resetting

    18 mars 2021, par Andreas Rheinhardt
    avformat/utils : Always leave parse_pkt in blank state, avoid resetting
    

    Always leaving said packet in a blank state after having used it
    allows to avoid having to reset it before one uses it ; and it also
    allows to use it in more places than just in parse_packet() here.

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

    • [DH] libavformat/utils.c