
Recherche avancée
Autres articles (61)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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. -
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.
Sur d’autres sites (7812)
-
Revision 36317 : Il y a certains cas où l’on ne peut pas passer par revision_mot notamment ...
16 mars 2010, par kent1@… — LogIl y a certains cas où l’on ne peut pas passer par revision_mot notamment si on s’insère dans un formulaire d’édition d’article dans un pipeline pre_edition ... On ne passe pas la gestion des conflits dans ce cas là
-
How to convert a 16:9 video to 4:3 video with top & bottom blurred video bars by using ffmpeg ?
27 décembre 2018, par Wai GyiI would like to convert a landscape video to a square video with blur bars at top and bottom.
I tried to adapt the commands from the following link but not succeeded.
So, can someone share a ffmpeg command with me ?
Thank you very much for your help.
Update : I tried again and get a working command. Please check and review.
ffmpeg -i in.mp4 -lavfi "[0:v]scale=iw:iw*3/4,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=h=iw*3/4" out.mp4
-
Output a video made of several video chunks of the input video
21 mai 2013, par madI was wondering if it was possible to output a video made of several extracts of the input video.
For example outputting a video made of the first 10s of each minute of the input.I know you can do it programmatically, calling
ffmpeg
several times with -ss and -t to make the chunks and then merge them, but is it possible to do it in one command using video filters ?