
Recherche avancée
Autres articles (90)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (7732)
-
avformat/cache : rename the class name fro Cache to cache
4 décembre 2019, par Steven Liuavformat/cache : rename the class name fro Cache to cache
liuqideMacBook-Pro:build liuqi$ ffmpeg —help full | grep cache
cannot find cache protocol options.after patch :
bogon:dash liuqi$ ./ffmpeg —help full | grep cache
cache AVOptions :
can find the cache AVOptions after patch.Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
-
build : make out-of-tree builds bit-identical to in-tree builds
28 décembre 2015, par Andreas Cadhalpunbuild : make out-of-tree builds bit-identical to in-tree builds
Previously the full source path was embedded inconsistently in the debug
information between in-tree/out-of-tree builds.The ’vpath %.inc’ becomes necessary for finding
libavfilter/all_channel_layouts.inc in out-of-tree builds.The full source path is still embedded in the debug information, but
it’s now independent of whether building in-tree or out-of-tree.The biggest improvement of this patch is that gdb now always searches
for the path relative to the source directory. It still also searches
for the full path.
Previously it searched only for the full path in out-of-tree builds,
making the debug information generated by Debian’s buildds rather hard
to use.Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
avocdec/cavsdsp : Fix undefined pointer arithmetic
27 septembre 2022, par Andreas Rheinhardtavocdec/cavsdsp : Fix undefined pointer arithmetic
src2 is used in CAVS_SUBPIX_HV iff FULL is true (it is exactly
for the egpr functions) ; otherwise it might be NULL. So check
for FULL before doing pointer arithmetic.
Fixes a "src/libavcodec/cavsdsp.c:524:1 : runtime error : applying
non-zero offset 8 to null pointer" from UBSan.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>