Recherche avancée

Médias (91)

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • avcodec/intrax8 : Stop setting write-only block_last_index

    7 mars, par Andreas Rheinhardt
    avcodec/intrax8 : Stop setting write-only block_last_index
    

    These values are only used by the mpegvideo unquantize functions,
    yet these are not active when intrax is in use. Furthermore,
    given that ff_intrax8_decode_picture() decodes multiple
    macroblocks in a given call, it makes no sense to return
    any value (that was in practice the maximum of the indices
    of all the macroblocks decoded).

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

    • [DH] libavcodec/intrax8.c
    • [DH] libavcodec/intrax8.h
    • [DH] libavcodec/vc1dec.c
    • [DH] libavcodec/wmv2dec.c
  • avformat/smacker : Stop caching and copying audio frames

    23 juin 2020, par Andreas Rheinhardt
    avformat/smacker : Stop caching and copying audio frames
    

    The layout of a Smacker frame is as follows : For some frames, the
    beginning of the frame contained a palette for the video stream ; then
    there are potentially several audio frames, followed by the data for the
    video stream.

    The Smacker demuxer used to read the palette, then cache every audio frame
    into a buffer (that gets reallocated to the desired size every time a
    frame is read into this buffer), then read and return the video frame
    (together with the palette). The cached audio frames are then returned
    by copying the data into freshly allocated buffers ; if there are none
    left, the next frame is read.

    This commit changes this : At the beginning of a frame, the palette is
    read and cached as now. But audio frames are no longer cached at all ;
    they are returned immediately. This gets rid of copying and also allows
    to remove the code for the buffer-to-AVStream correspondence.

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

    • [DH] libavformat/smacker.c
  • avfilter/vf_bilateral : stop using sigmaS as percent of width/height

    17 juillet 2020, par Paul B Mahol
    avfilter/vf_bilateral : stop using sigmaS as percent of width/height
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_bilateral.c