
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 (67)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10832)
-
avutil/opt : Avoid av_strdup(NULL)
25 mars 2024, par Andreas Rheinhardtavutil/opt : Avoid av_strdup(NULL)
It is not documented to be safe and in any case it is nonsense :
Currently av_strdup(NULL) returns NULL and in order to distinguish
this from a genuine allocation failure, opt_copy_elem()
checked afterwards whether src was actually NULL. But then one
can simply check in advance whether one should call av_strdup()
at all.
set_string() was even worse and returned ENOMEM in case the value
to be duplicated is NULL ; this only worked because
av_opt_set_defaults2() does not check the return value at all
(given that it can't propagate it).These two places account for 389114 of 390356 av_strdup(NULL)
calls during one FATE run.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avcodec/wmavoice : sanity check block_align
21 décembre 2019, par Michael Niedermayeravcodec/wmavoice : sanity check block_align
This limit is roughly based on the bitreader limit, its likely a much tighter limit
could be usedFixes : left shift of 1965039647 by 1 places cannot be represented in type 'int'
Fixes : 19545/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAVOICE_fuzzer-5695391899320320Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Where to find old ffmpeg/ffprobe documentation ?
5 mars 2019, par MultihunterThere are several different versions of
ffmpeg
andffprobe
flying around, and each version has a different API.If I
apt-get install ffmpeg
on Ubuntu 16.04, I get ffmpegversion 2.8.15-0ubuntu0.16.04.1
. If I installapt-get install ffmpeg
on Ubuntu 18.04, I getversion 3.4.4-0ubuntu0.18.04.1
.When I visit the ffmpeg documentation, it says "The following documentation is regenerated nightly, and corresponds to the newest FFmpeg revision. Consult your locally installed documentation for older versions." That is, the hosted documentation is neither of those two versions.
So I have two questions :
- What does it mean "your locally installed documentation" ? Is it only talking about
man ffmpeg
? Or is there some way to host the documentation as a webpage ? - Are there any places that simply host the older versions of the ffmpeg documentation ?
- What does it mean "your locally installed documentation" ? Is it only talking about