
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (85)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire 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 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (10653)
-
Revision 9e55834426 : Replace cpi->common with preset variable cm This commit replaces a few use case
24 juin 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Replace cpi->common with preset variable cmThis 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
-
ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
12 mai 2022, par Andreas Rheinhardtffbuild/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>
-
Revision a93992e725 : Adding get_entropy_context function. Moving common code from encoder and decode
27 août 2013, par Dmitry KovalevChanged 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