Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (67)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (6496)

  • avcodec/arm/int_neon : fix handling sizes % 16 != 0

    13 février 2014, par Michael Niedermayer
    avcodec/arm/int_neon : fix handling sizes % 16 != 0
    

    This assumes the array is sufficiently padded with 0

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/arm/int_neon.S
  • avfilter/vf_tinterlace : fix handling of not so even sizes

    29 avril 2013, par Michael Niedermayer
    avfilter/vf_tinterlace : fix handling of not so even sizes
    

    Fixes green bottom line

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_tinterlace.c
  • matroskadec : Add sizes to forward declarations

    17 juillet 2019, par Andreas Rheinhardt
    matroskadec : Add sizes to forward declarations
    

    Unknown-length elements end when an element not allowed in them, but
    allowed at a higher level is encountered. In order to check for this,
    c1abd95a added a pointer to every syntax level's parent to each
    EbmlSyntax. Given that the parent must of course also reference the
    child in order to be able to enter said child level, one needs to use
    forward declarations.
    These forward declarations constitute tentative definitions and tentative
    definitions with internal linkage (like our syntaxes) must not be an
    incomplete type. Yet they were an incomplete type and while GCC and
    Clang did not even warn about this (on default warning levels), it
    broke compilation with MSVC. Therefore this commit adds the sizes.

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

    • [DH] libavformat/matroskadec.c