
Recherche avancée
Médias (3)
-
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
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (62)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (9462)
-
vc2enc : zero padding of the coefficient buffer
17 décembre 2019, par Lynnevc2enc : zero padding of the coefficient buffer
Wavelet types with large amounts of overreading/writing like 9_7 would
write into the padding at high wavelet depths, which would remain and be
read by the next frame's transform and quickly cause artifacts to appear
for subsequent frames.
This fix affects all frames encoded with a non-power-of-two width, with
the artifacts varying between non-observable to very noticeable,
depending on encoder settings, so reencoding is advisable. -
lavc/videotoolboxenc : support additional options
20 mai 2023, par Rick Kernlavc/videotoolboxenc : support additional options
Added support for more VideoToolbox encoder options :
qmin and qmax options are now used
max_slice_bytes : Max number of bytes per H.264 slice
max_ref_frames : Limit the number of reference frames
Disable open GOP when the cgop flag is set
power_efficient : Enable power-efficient mode
Signed-off-by : Rick Kern <kernrj@gmail.com>
-
Generate and concatenate videos from images with ffmpeg in single command
17 août 2022, par YulkyTulkyMy goal is to generate a video from images. Let's say I have 2 images
1.png
and2.png
.

I can do


ffmpeg -loop 1 1.png -t 3 1.mp4



ffmpeg -loop 1 2.png -t 5 2.mp4



to create a 3 second video from the first image and 5 second video from the second image.


Then, I merge the two videos using


ffmpeg -i 1.mp4 -I 2.mp4 -filter_complex "concat" final.mp4 



to create my final 8 second video.


This process seems extremely inefficient, and I feel I do not have to use all this processing power+disk reading/writing to create 2 intermediary video files when I only want the one final video.


Is there a way to execute this entire process in one ffmpeg command (efficiently) ?