
Recherche avancée
Autres articles (55)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8255)
-
Make picture from stream(webcam) by ffmpeg [on hold]
29 novembre 2018, par SkiFI have webcam and I want to store video from it. I need to store just last one hour. Can I limit space or time for ffmpeg out file ?
Second and the main problem is make pictures every minute. I want make pictures from actual webcam state. with minimal delay.
Based on my current knowledge I think the best solution is make 3 processes.
The Fist will capture video for one minute and there will be 60 files with time stamp in name and every minutes ffmpeg will be restarted by script and script remove the oldest file. The Second will share video steam and The Third will take last frame from the newest video file. Maybe some one know better solution for this problem.I think bash is the best tool for this problem. Solution is based on c++ or python also welcome.
-
avutil/tablegen : add tablegen libm compatibility shims
26 novembre 2015, par Ganesh Ajjanagaddeavutil/tablegen : add tablegen libm compatibility shims
This is useful for build-time table generation (—enable-hardcoded-tables),
by providing compat shims for hosts that have broken libms.This file is deliberately kept minimal ; functions can always be added on
an as-needed basis.Reviewed-by : Clément Bœsch <u@pkh.me>
Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com> -
libavformat/asfdec : Fix regression bug when reading image attachments
19 avril, par softworkzlibavformat/asfdec : Fix regression bug when reading image attachments
Commit c8140fe7324f264faacf7395b27e12531d1f13f7 had introduced
a check for value_len > UINT16_MAX.
As a consequence, attached images of sizes larger than UINT16_MAX
could no longer be read.This is a minimal fix of the regression, avoiding the controversies
of my earlier submission regarding int type handling in asfdec.Signed-off-by : softworkz <softworkz@hotmail.com>