
Recherche avancée
Autres articles (82)
-
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (9990)
-
How to extract frames and name them starting with 0.png ?
10 août 2021, par Jesse HixI am extracting frames from a video to alter them however for the program to work properly I need ffmpeg to extract the frames and name them starting with 0.png. Right now it extracts at 1.png. The command to extract the frames is :


ffmpeg -i input_video -vf select="between(n\,'0'\,'20'\)" -vsync 0 frames/%d.png


Is this possible still using this command or should I create a loop that extracts them and names them based on a counting variable ?


-
Fix some minor word duplication
1er décembre 2014, par Zoë BladeFix some minor word duplication
Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>
-
ffmpeg select filter starting time ?
8 mars 2021, par Sergey YermakI am stuck with ffmpeg select filter.


I am trying to generate 10 thumbnails from the video and it works fine.


However, I want to skip some starting time (around 30 seconds), since there are usually video intros, etc.


So I can't figure out a way to do that - not using ffmpeg too often.
The command I'm currently using :


ffmpeg -loglevel panic -y -i "test.mp4" -frames 1 -q:v 1 -vf "select=not(mod(n\,7877)),scale=-1:227,tile=10x1" video_preview.jpg