
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...)
Sur d’autres sites (11325)
-
lavu/tx : rotate 3 & 15-point exptabs
10 septembre 2022, par Lynne -
How can I loop one frame with ffmpeg ? All the other frames should point to the first with no changes, maybe like a recusion
15 avril 2022, par zodrobI want to make a long video from a single image in ffmpeg.



I need it to be fastly encodeable and at the end the video should have a small file size.



Is it possible to fill the video with frames that point to the preivous(or the first) frame with no changes ?



I tried with this code, but it was slow and made a big file :



ffmpeg -loop 1 -i image.jpg -c:v libx264 -tune stillimage -shortest -preset ultrafast -t 3600 output.mp4



-
Finding start point in audio file with ffmpeg
4 juillet 2019, par jovadezaI’m trying to determine the starting and end point in an audio file with ffmpeg. My definition for start and end point is when the song reaches -27dB. I have tried multiple ffmpeg audio filters, but without the desired result.
The closest I got was when using the following command :
ffmpeg -i song.mp3 -af silencedetect=n=-27dB:d=0.2 -f null -
However, this returns multiple values, since the song can get silent in the middle of the song as well.
So, I only want to get the first time the song reaches -27dB and the last time the song reaches -27dB.
See image with example markers, created manually in Adobe Audition. Marker 1 : song reaches -27dB for the first time, marker 2 : song reaches -27dB for the last time. This are the positions in the song I am trying to find, trough ffmpeg
Thanks !