
Recherche avancée
Autres articles (69)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9775)
-
ffmpeg overlay endless concat list loop layer on another rtmp & get one merged rtmp link
8 février 2020, par yolov3Question is : how to feed ffmpeg1 output as overlay endless loop layer on another rtmp & get one merged rtmp link in output , all in one ffmpeg command ?
base knowledge :
test.txt :
file 'video1.mp4'
file 'video2.mp4'
file 'video3.mp4'
file 'test.txt'ffmpeg1 command :
ffmpeg -re -f concat -i ./test.txt -c copy -f flv rtmp://....
Overlay two live streams with ffmpeg :
-filter_complex "overlay=70:70"
-vcodec libx264 -preset ultrafast -f flv rtmp://out.com:1935/outrtmp -
List of FFMPEG audio formats and their file extensions
1er mai 2024, par vaidI've tried to find information about this but to no avail.



What audio formats and their file extensions are supported by FFMPEG ?



Is there a command that can list them all ?


-
ffmpeg video of image list within a folder
31 mars 2020, par Gergely SzarkaI am trying to create an animation from a png files. They are all in the same folder and are named



step0.png
step1.png
step2.png
.....

step19998.png
step19999.png




I frame represents 0.01s, so I think I need 100 fps.



the command I was trying :



ffmpeg -r 100 -f image2 -pattern_type glob -i '*.png' -vcodec libx264 -crf 1 -pix_fmt yuv420p test.mp4




For some reason it doesnt put them together in the correct order, but when i put the last 500 into another folder and ran the command there it worked perfectly.