
Recherche avancée
Autres articles (57)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 ) (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (7452)
-
FFmpeg drawtext on a range of frames
10 juillet 2013, par Charliedrawtext option has a 'draw' expression that specifies if the text should be drawn.
http://www.ffmpeg.org/ffmpeg-filters.html#drawtext-1I figured out we could use the following expressions to write on, before, or after a specific frame :
:draw='eq(n,42)', :draw='lt(n,42)', :draw='gt(n,42)'
Do you know how to combine two expressions to write text, for instance, on every frame between frames 10 and 42 ?
I've asked ffmpeg and searched doc or examples for combining expressions. The following don't work :
:draw='gt(n,10)&&lt(n,42)' -> crash
:draw='gt(n,10);lt(n,42)' -> only applies second expression
:draw='gt(n,10)':draw='lt(n,42)' -> only applies second expressionI'm using ffmpeg version 0.8.6-4:0.8.6-0ubuntu0.12.04.1
Thanks in advance
-
Which Android FFMpeg library ?
21 décembre 2017, par Bz BurrWhich Android FFmpeg library can one use to record video from the phone’s camera to a file ?
I see loads of information about using FFmpeg to transcode etc but not a lot about how to record to file
cheers
Buzz -
ffmpeg - conditional blur of area based on colour
23 mai 2021, par SilentfuryIs it somehow possible in FFmpeg to blur areas of a video based on their colour value ?


For example, all pixels of a video considered "green" should get a box blur


Alternatively, I could also think of blurring the entire video but the blurring strength of each pixel/area should depend on the amount of "green"


Is there some clever filter magic for that ?