Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13888)

  • avcodec/cbs_av1 : Allow specifying obu size byte length

    11 septembre 2023, par Fei Wang
    avcodec/cbs_av1 : Allow specifying obu size byte length
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Reviewed-by : Neal Gompa <ngompa13@gmail.com>

    • [DH] libavcodec/cbs_av1.c
    • [DH] libavcodec/cbs_av1.h
  • lavc/vvc_ps : Add alf raw syntax into VVCALF

    28 octobre 2024, par Fei Wang
    lavc/vvc_ps : Add alf raw syntax into VVCALF
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vvc/ps.c
    • [DH] libavcodec/vvc/ps.h
  • avcodec/av1dec : Check tiles sizes, fix assert, don't read bytes bitwise

    17 septembre 2020, par Andreas Rheinhardt
    avcodec/av1dec : Check tiles sizes, fix assert, don't read bytes bitwise
    

    Tiles have a size field with a length from one to four bytes. As such it
    is not possible to read it all at once with a call to get_bits() as this
    only allows to read up to 25 bits ; this is guarded by an av_assert2. Yet
    this is done by the AV1 decoder in get_tiles_info(). It has been done
    despite said size fields being byte-aligned. This commit fixes this by
    using the bytestream2 API instead.

    Furthermore, it is now explicitly checked whether the data is
    consistent, i.e. whether the data that is supposed to be there extends
    beyond the end of the data actually present.

    Reviewed-by : Wang, Fei W <fei.w.wang@intel.com>
    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/av1dec.c