
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (39)
-
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (4315)
-
avcodec/xbmdec : get_nibble() minor speed increase, and binary reduction
1er février 2021, par Jose Da Silvaavcodec/xbmdec : get_nibble() minor speed increase, and binary reduction
Replace av_isxdigit(*ptr) and convert(*ptr) with get_nibble(*ptr) which
returns a valid nibble==0x00..0x0f or false==255 for all other values.
This way we only need to work with *ptr once instead of twice.Removing inline av_isxdigit(x) functions also shrinks executable size.
Signed-off-by : Joe Da Silva <digital@joescat.com>
-
avcodec/xbmenc : Do not add last comma into output
19 janvier 2021, par Jose Da Silvaavcodec/xbmenc : Do not add last comma into output
There is a minor bug in xbm encode which adds a trailing comma at the end
of data. This isn't a big problem, but it would be nicer to be more
technically true to an array of data (by not including the last comma).This bug fixes the output from something like this (having 4 values) :
static unsigned char image_bits[] = 0x00, 0x11, 0x22,
to C code that looks like this instead (having 3 values) :
static unsigned char image_bits[] = 0x00, 0x11, 0x22
which is the intended results.
Subject : [PATCH 1/3] avcodec/xbmenc : Do not add last comma into output arrayxbm outputs c arrays of data.
Including a comma at the end means there is another value to be added.
This bug fix changes something like this :
static unsigned char image_bits[] = 0x00, 0x11, 0x22,
to C code like this :
static unsigned char image_bits[] = 0x00, 0x11, 0x22Signed-off-by : Joe Da Silva <digital@joescat.com>
-
avcodec/xbmenc : xbm Lower memory use
19 janvier 2021, par Jose Da Silvaavcodec/xbmenc : xbm Lower memory use
Two minor memory improvements.
First bug reduces memory needed to about 6/7 the needed amount, which
allows you to host almost 7 pictures in the same memory needed for 6
Second is a recalculation of the total additional memory for headers etc.size = avctx->height x (linesize * 6 + 1) + (31+32+38+4+1)
Subject : [PATCH 2/3] avcodec/xbmenc : xbm Lower memory useSmall 6/7th size memory reduction.
size = avctx->height x (linesize * 6 + 1) + (31+32+38+4+1)Signed-off-by : Joe Da Silva <digital@joescat.com>