
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (46)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9119)
-
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


-
avformat/jacosubdec : Use 64bit intermediate for start/end timestamp shift
11 février 2021, par Michael Niedermayeravformat/jacosubdec : Use 64bit intermediate for start/end timestamp shift
Fixes : signed integer overflow : -1957694447 + -1620425806 cannot be represented in type 'int'
Fixes : 30207/clusterfuzz-testcase-minimized-ffmpeg_dem_JACOSUB_fuzzer-5050791771635712Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>