Recherche avancée

Médias (91)

Autres articles (47)

  • 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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6816)

  • avformat/srtdec : Fix pointer corruption

    14 mai 2013, par Michael Niedermayer
    avformat/srtdec : Fix pointer corruption
    

    This fixes use of uninitialized memory and possible out of array access

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/srtdec.c
  • avcodec/mpegvideo : Use offset instead of pointer for vbv_delay

    26 janvier 2022, par Andreas Rheinhardt
    avcodec/mpegvideo : Use offset instead of pointer for vbv_delay
    

    An offset has the advantage of not needing to be updated
    when the buffer is reallocated. Furthermore, the way the pointer
    is currently updated is undefined behaviour in case the pointer
    is not already set (i.e. when not encoding MPEG-1/2), because
    it calculates the nonsense NULL - s->pb.buf.

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

    • [DH] libavcodec/mpeg12enc.c
    • [DH] libavcodec/mpegvideo.h
    • [DH] libavcodec/mpegvideo_enc.c
  • src/flac/decode.c : Decoder buffering improvements on Windows.

    2 octobre 2014, par Erik de Castro Lopo
    src/flac/decode.c : Decoder buffering improvements on Windows.
    

    On Windows, decoding flac files is also prone to producing fragmented
    files. Avoid fragmentation on NTFS by using Windows specific functions to
    tell Windows the size of the file beforehand.

    Patch-from : Janne Hyvärinen <cse@sci.fi>

    • [DH] src/flac/decode.c