
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11419)
-
avcodec/cabac : remove START/STOP_TIMER debug/benchmark code
18 avril 2015, par Michael Niedermayer -
How can i extract freezedetect start and end frames from video using ffmpeg
9 juillet 2021, par kwombaI have to following command which detects freezed frames using only part of a movie :


ffmpeg -i movie.mp4 -vf "crop=50:50:0:740,freezedetect" -f null -


Now this outputs the metadata from the freezedetect filter like so :


[freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_start: 6.86667
[freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_duration: 2.4
[freezedetect @ 0000013fbbe2ab40] lavfi.freezedetect.freeze_end: 9.26667



But it also sets the framemetadata which (dumped to a file) contains :


frame:126 pts:126000 pts_time:8.4
lavfi.freezedetect.freeze_start=6.86667
frame:139 pts:139000 pts_time:9.26667
lavfi.freezedetect.freeze_duration=2.4
lavfi.freezedetect.freeze_end=9.26667



Now i want to (in the same command if possible) save the start and end freezed frames (126 and 139 in this case) to a png file.


Can i do this using only 1 ffmpeg command ?


-
How to merge several audio and video file with defined start time using ffmpeg ? [closed]
1er décembre 2020, par Sina RostamiI want to merge several audio and video files with their defined start time using ffmpeg.


for example consider these :


a.mp3 (00:00)


b.mp3 (00:10)


c.mp3 (00:20)


a.mp4 (00:10)


and in the overlapping times, both file should be played.


the output should be a file (out.mp4) like this :


time:
 |---------------a.mp4-----------------|
|---a.mp3--|
 |---b.mp3----| |----c.mp3-------------|
====================================================




and it's okay to show a black screen when there's no video files at the time.
and also a soundless video when there's no audio file.
is it possible using ffmpeg ?


plz help