Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (72)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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

  • avutil/tablegen : add tablegen libm compatibility shims

    26 novembre 2015, par Ganesh Ajjanagadde
    avutil/tablegen : add tablegen libm compatibility shims
    

    This is useful for build-time table generation (—enable-hardcoded-tables),
    by providing compat shims for hosts that have broken libms.

    This file is deliberately kept minimal ; functions can always be added on
    an as-needed basis.

    Reviewed-by : Clément Bœsch <u@pkh.me>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavutil/tablegen.h
  • libavformat/asfdec : Fix regression bug when reading image attachments

    19 avril, par softworkz
    libavformat/asfdec : Fix regression bug when reading image attachments
    

    Commit c8140fe7324f264faacf7395b27e12531d1f13f7 had introduced
    a check for value_len > UINT16_MAX.
    As a consequence, attached images of sizes larger than UINT16_MAX
    could no longer be read.

    This is a minimal fix of the regression, avoiding the controversies
    of my earlier submission regarding int type handling in asfdec.

    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] libavformat/asfdec_f.c
  • configure : fix linking with MSVC when using —disable-optimizations

    15 décembre 2016, par Steve Lhomme
    configure : fix linking with MSVC when using —disable-optimizations
    

    Without any optimization flags, MSVC does no dead code elimination (DCE) at
    all, even for the most trivial cases. DCE is a prerequisite for building libav
    correctly, otherwise there are undefined references to functions for other
    architectures and disabled components.

    - O1 is the minimal optimization flag for MSVC that does include DCE.

    • [DBH] configure