
Recherche avancée
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 ;
-
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 (5272)
-
FFMPEG - encode and decode 8bit PNG images
3 mai 2022, par AustinI have a few png images (8bit) which I want to pack into a mkv file with libx264 encoding and the
pix_fmt
flag set to gray. When I extract the individual frames they are bloated to 24 bit. Any idea how to fix that ?

ffmpeg -pix_fmt gray -framerate 1 -r 30 -i C:\%d.png \
 -vcodec libx264 -crf 0 C:\test.mkv

ffmpeg -i C:\test.mkv -r 30 C:\%d.png



-
FFMPEG - Is it possible to cut from one video multiple segments and stitch them together ?
27 mars 2014, par ajacian81I'm trying to do this in as few steps as possible since I'm doing this in Android and FFMPEG SegFaults if run multiple times (in the same process).
Assume I have a 25 minute video :
I want to cut from minute 1 to minute 5.
I also want to cut from minute 8 to minute 13.
I also want to cut from minute 17 to 23.
I then want to stitch them together into a new video file.I can do the above steps as their own individual steps (using -ss and -t as well as the concat filter), however, I'm wondering if it's possible to do this in FFMPEG in a single execution ?
-
ffmpeg : transcode over socket
19 septembre 2020, par user14258924I am consuming multiple streams of h264 video and aac audio data in my own RTMP server and I want to transcode these streams into different codecs so I want to send these tracks, in chunks, into ffmpeg and get the transcoded result back. But due to performance requirements I want to use some kind of streaming where I can just open up a socket to get files in/out instead of dumping the data into individual files and then reading transcoded files back.


Is it possible with ffmpeg ?