
Recherche avancée
Autres articles (84)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11753)
-
Revision 36a9a33b90 : Add dynamic range notes to vp9_vector_var_c Change-Id : If536ad31046ecd9e2ecd9c2
1er août 2015, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_avg.c
Add dynamic range notes to vp9_vector_var_cChange-Id : If536ad31046ecd9e2ecd9c21f52f8192c8153ad7
-
ffmpeg making flashing / blinking text
16 septembre 2022, par samusugiruI'm trying to use ffmpeg to add blinking / flashing text to a short movie file.


The code attached works for blinking text every 10th frame BUT the text only comes up for a single frame, so it's not very readable. I'd like it to hold for, say, 4 frames. I wonder if theres some kinda fancy combo using between as well as enable ?


I'm semi new to this so my brain stopped when trying to come up with a solution.


ffmpeg -i input.mov -vf "drawtext=text='TEXTY':enable= (not (mod(n\,10)) )" output.gif



-
avcodec/sanm : support "StarWars - Making Magic" video
1er mai, par Manuel Laussavcodec/sanm : support "StarWars - Making Magic" video
Videos of "StarWars - Making Magic" consist of 640x480 codec3 frames
which establish a background, and a 320x240 codec48 video put on top
at random left/top offsets.To support this, a new default buffer "fbuf", which holds the final
image to be presented, is added, since codec37/47/48 need their 2/3 buffers
to be private to themselves. The decoded result is then copied to the fbuf,
honoring the left/top offsets if required.Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>