Recherche avancée

Médias (91)

Autres articles (77)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11404)

  • Révision 18368 : Révision du code HTML produit par le filtre agenda_memo (et son utilisation impl...

    22 août 2011, par esj@rezo.net

    remplacement de "cellpadding" par la propriété CSS "padding" * remplacement de "cellspacing=0" par la propriété CSS "border-collapse : collapse * remplacement de la plupart des tables par des Div positionnéés, afin d’évacuer certaines tables imbriquées * mise en Ajax du triple mini-agenda aparaissant au (...)

  • avcodec/cbs_av1 : Add tx mode enum values

    11 septembre 2023, par Fei Wang
    avcodec/cbs_av1 : Add tx mode enum values
    

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

    • [DH] libavcodec/av1.h
    • [DH] libavcodec/cbs_av1_syntax_template.c
  • 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