Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (62)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • 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

Sur d’autres sites (11230)

  • Revision a93992e725 : Adding get_entropy_context function. Moving common code from encoder and decode

    27 août 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_entropy.h


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/encoder/vp9_tokenize.c



    Adding get_entropy_context function.

    Moving common code from encoder and decoder to this function.

    Change-Id : I60fa643fb1ddf7ebbff5e83b6c4710137b0195ef

  • ffbuild/common : Fix CPPFLAGS applied for compiling C++ files

    12 mai 2022, par Andreas Rheinhardt
    ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
    

    Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS
    (the flags for compiling C++) like this :
    CXXFLAGS := $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS)
    Using " :=" creates a simply expanded variable, i.e. the values
    of the variable at the time of assignment are used and later
    modifications to them are ignored (using a recursively expanding
    variable (i.e. "=" instead of " :=") is not really possible here,
    as there would be an infinite loop when evaluating CXXFLAGS).

    Yet we perform later additions to CPPFLAGS : HAVE_AV_CONFIG_H and
    BUILDING_libfoo are defined. These do not reach C++ compilations.

    To fix this a trick is employed to prepend to a recursively
    expanded variable while keeping it recursively expanded.

    There are two practical consequences of this : C++ files now no longer
    include the version.h header, but only the version_major.h header
    of their library, saving some recompilations. Furthermore, they
    now get some optimized math functions (namely the ones from
    lavu/intmath.h instead of the ones from lavu/common.h).
    (av_parity() is the only one for which it makes a difference.)

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

    • [DH] ffbuild/common.mak
  • Revision 9e55834426 : Replace cpi->common with preset variable cm This commit replaces a few use case

    24 juin 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_pickmode.c



    Replace cpi->common with preset variable cm

    This commit replaces a few use cases of cpi->common with preset
    variable cm, to avoid unnecessary pointer fetch in the non-RD
    coding mode.

    Change-Id : I4038f1c1a47373b8fd7bc5d69af61346103702f6