Recherche avancée

Médias (91)

Autres articles (63)

  • 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

  • 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" (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (9422)

  • avfilter/af_headphone : Avoid intermediate buffer III

    25 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Avoid intermediate buffer III
    

    The headphone filter allocates a pair of buffers to be used as
    intermediate buffers lateron : Before every use they are zeroed, then
    some elements of the buffer are set and lateron the complete buffers are
    copied into another, bigger buffer. These intermediate buffers are
    unnecessary as the data can be directly written into the bigger buffer.
    Furthermore, the whole buffer has been zeroed initially and because no
    piece of this buffer is set twice (due to the fact that duplicate
    channel map entries are skipped), it is unnecessary to rezero the part
    of the big buffer that is about to be written to.

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

    • [DH] libavfilter/af_headphone.c
  • How to display Picture in picture for video files in .webm format, using NodeJS

    10 octobre 2020, par kurrodu

    Can someone please guide me How I could display one video file inside of another (Picture in picture), I have both the videos in .webm format.

    &#xA;

    Any pointers/ guidance is greatly appreciated.

    &#xA;

  • avcodec/movtextenc : fix writing to bytestream on BE arches

    14 octobre 2020, par Andriy Gelman
    avcodec/movtextenc : fix writing to bytestream on BE arches
    

    Fixes fate-binsub-movtextenc on PPC64

    Currently tags are written in reverse order on BE arches. This is fixed
    by using MKBETAG() and AV_RB32() to be arch agnostics.

    Also s->font_count is of type int. On BE arches with 32bit int,
    count = AV_RB16(&s->font_count) will read two most significant bytes
    instead of the least significant bytes. This is fixed by assigning
    s->font_count to count first.

    The final change is modifying the type of len. On BE arches
    the most significant byte of the int was written instead of the least
    significant byte.

    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavcodec/movtextenc.c