
Recherche avancée
Autres articles (37)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (3796)
-
Revision 4441 : Un extra vide pour ne pas avoir le dist/ à cet endroit (la navigation est ...
15 novembre 2010, par kent1 — LogUn extra vide pour ne pas avoir le dist/ à cet endroit (la navigation est déjà bien assez encombrée)
-
Revision 4441 : Un extra vide pour ne pas avoir le dist/ à cet endroit (la navigation est ...
15 novembre 2010, par kent1 — LogUn extra vide pour ne pas avoir le dist/ à cet endroit (la navigation est déjà bien assez encombrée)
-
Large Panorama to Panning Video in FFMPEG
7 octobre 2018, par SogreeI have been looking for a command line based solution for panning panorama’s like this : Large Panorama to Panning Video Based on that answer I’ve been experimenting with switches and formulas but they are a bit too complex for me (even after reading the ffmpeg command line help functions). What I would like to do :
Pan an image from left to right. The input file is an PSD that has a large resolution (for example 3350x13140 pixels) but this is variable. So I would like ffmpeg to :
1) Resize/scale the image to a set height of 1080 (so the height is set, but the width is flexible for the Pan) (is this step needed ??)
2) Crop (and loop=1) the image to 1920x1080 (for me, combining scale and crop gives an error)
3) But before starting the pan I would like it to wait for 2 seconds (so the most left part of the image would stand still for 2 seconds before panning)
4) And after finishing the pan I would like it to wait for 2 seconds again (so the most right part of the image would stand still for 2 seconds before panning)
5) Panning speed : Based on the width of the image (in this case 13140 pixels) I would like the panning speed to be 3,5 seconds per 1000 pixels. So in this case 46 seconds for the pan (and the end result (video length) would be 50 seconds (2 + 46 + 2).
Only bullet 2 (with 1) I seem to be able to do.
ffmpeg -loop 1 -framerate 60 -i in.psd -vf crop=1920:ih :’min((iw/10)*t,9*iw/10)’:0 -t 20 -c:v out.mp4
So how should I alter the above options ? And in another posting this was listed :
ffmpeg -loop 1 -r 60 -i in.psd -vf crop=1920:1080:n:0 -frames:v 11220 -pix_fmt yuv420p -preset fast -crf 25 out.mkv
But that command does not rescale the image (only pans the top (1920x1080) of the image).
Maybe I need a combination of the two ? Or is using the zoompan command (with zoom set to off ?) a better option ?