
Recherche avancée
Autres articles (69)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6513)
-
fmmpeg with windows file with random names
15 juin 2022, par slimguatI have in Windows system some jpg files with this file name style :


fixedname_xxxnumber_randomtext.jpg



I want to use ffmpeg library to generate animation based on these images, but I don't know how to put it with that random part at the end, the only thing I can do is to remove manually all that random text and create a script like in this example.


ffmpeg -start_number 100 -framerate 10 -i fixedname_%%03d.jpg



is there any way to add a symbol like * to just take whatever comes after the order ?


-
how to fix focus on x11 window / Keep x11 always on TOP [on hold]
19 septembre 2017, par SIMI am doing one project with openGL animations and videos.
openGL animations initializing the x11 window with transparency and full screen. I am using ffplay to run the video which use SDL window system.when X11 is in fullscreen, and then I run the video in resized mode, then x11/animation is on top and everything is working OK.
But when I initialized the video with fullscreen, then SDL is acquiring the focus and x11 is going behind the SDL.
What can be the possible solution to this ?
-
ffmpeg video of image list within a folder
31 mars 2020, par Gergely SzarkaI am trying to create an animation from a png files. They are all in the same folder and are named



step0.png
step1.png
step2.png
.....

step19998.png
step19999.png




I frame represents 0.01s, so I think I need 100 fps.



the command I was trying :



ffmpeg -r 100 -f image2 -pattern_type glob -i '*.png' -vcodec libx264 -crf 1 -pix_fmt yuv420p test.mp4




For some reason it doesnt put them together in the correct order, but when i put the last 500 into another folder and ran the command there it worked perfectly.