
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (99)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (8658)
-
docs : Fix simple typo, inteded -> intended
18 septembre 2020, par timgates42docs : Fix simple typo, inteded -> intended
There is a small typo in jquery.colorbox.js.
Should read `intended` rather than `inteded`.
-
Can I capture a series of images named according to it's timestamp
26 juillet 2015, par GDPI am successfully capturing a screen shot every 15 seconds with the below command, but I need to correlate the images to where in the video the screen shot is from.
The %d gives me an integer, but is there a similar variable to include the timestamp of the image in the output file name ?
c:\ffmpeg\bin>ffmpeg -i c:\files\video.mp4 -vf fps=1/15 c:\images\image_%d.png";
Current output is :
c:\images\image1.png
c:\images\image2.png
c:\images\image3.png
....
c:\images\image999.pngDesired output is something like :
c:\images\image_00-00-00.png // Capture at start of video
c:\images\image_00-00-15.png // Capture at 00:00:15
c:\images\image_00-00-30.png // Capture at 00:00:30
c:\images\image_00-00-45.png // Capture at 00:00:45
c:\images\image_00-01-00.png // Capture at 00:01:00
....
c:\images\image_01-25-15.png // Last capture -
How to convert a series of images to video with crossfade in FFMPEG on Windows ?
17 juillet 2021, par Joe JobsI have a set of 40 images and I need to create a video where each image stays 5 seconds and then crossfades to the next.
I have found a way to transform the images into a video but each image stays for one single frame, I lowered the framerate to 1 FPS but still I need 5 seconds for each image and I need to crossfade between images.


This is the script I'm using now :


C:\Programs\FFMPEG\bin\ffmpeg.exe -r 1 -f image2 -s 1920x1080 -i %%03d.jpg -format yuv420p -crf 25 test.mp4