Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (111)

  • 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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (10354)

  • configure : Add mpegvideoenc->fdctdsp dependency

    9 octobre 2022, par Andreas Rheinhardt
    configure : Add mpegvideoenc->fdctdsp dependency
    

    Currently masked by an unnecessary me_cmp->fdctdsp dependency.

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

    • [DH] configure
  • avcodec/vp9 : Remove vp9_free_entries()

    2 septembre 2021, par Andreas Rheinhardt
    avcodec/vp9 : Remove vp9_free_entries()
    

    Now that the mutexes and conditions are only initialized and destroyed
    once, said function only had one purpose : free the entries array.
    Given that vp9_alloc_entries() already does this if the array is already
    allocated it is unnecessary to call vp9_free_entries() anywhere except
    when closing. And then one can just inline the one free into
    vp9_decode_free().

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

    • [DH] libavcodec/vp9.c
  • avcodec/pthread_frame : Remove FF_API_SLICE_OFFSET

    18 septembre 2023, par Andreas Rheinhardt
    avcodec/pthread_frame : Remove FF_API_SLICE_OFFSET
    

    Since 432adca5fedcb277b9a715a723cfd40735ec58f8 no decoder
    looks at the slice_count and slice_offset fields at all,
    so there is no reason to synchronize them between the worker
    and the user thread.

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

    • [DH] libavcodec/pthread_frame.c