
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (44)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (8375)
-
avcodec : clarify some decoding/encoding API details
6 mars 2017, par wm4avcodec : clarify some decoding/encoding API details
Make it clear that there is no timing-dependent behavior. In particular,
there is no state in which both input and output are denied, and where
you have to wait for a while yourself to make progress (apparently some
hardware decoders like to do this).Avoid wording that makes references to time. It shouldn’t be mistaken
for some kind of asynchronous API (like POSIX read() can return EAGAIN
if there is no new input yet). It’s a state machine, so try to use
appropriate terms.Signed-off-by : Diego Biurrun <diego@biurrun.de>
-
fftools/ffmpeg : Take type limitations of AVFifo API into account
20 novembre 2021, par Andreas Rheinhardtfftools/ffmpeg : Take type limitations of AVFifo API into account
The types used by the AVFifo API are inconsistent :
av_fifo_(space|size)() returns an int ; av_fifo_alloc() takes an
unsigned, other parts use size_t. This commit therefore ensures
that the size of the muxing_queue FIFO never exceeds INT_MAX.While just at it, also make sure not to call av_fifo_size()
unnecessarily often.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avfilter/bwdif : account for chroma sub-sampling in min size calculation
6 décembre 2023, par Cosmin Stejereanavfilter/bwdif : account for chroma sub-sampling in min size calculation
The current logic for detecting frames that are too small for the
algorithm does not account for chroma sub-sampling, and so a sample
where the luma plane is large enough, but the chroma planes are not
will not be rejected. In that event, a heap overflow will occur.This change adjusts the logic to consider the chroma planes and makes
the change to all three bwdif implementations.Fixes #10688
Signed-off-by : Cosmin Stejerean <cosmin@cosmin.at>
Reviewed-by : Thomas Mundt <tmundt75@gmail.com>
Signed-off-by : Philip Langdale <philipl@overt.org>