
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (87)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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 (4115)
-
Can ffmpeg record more than two audio tracks ? (Linux)
27 novembre 2017, par Toby EggittI want to record four microphones, independently but concurrently and on the same clock (so they stay synchronized over long recording periods). I’m accustomed to grabbing two microphones (as left and right channels) using ffmpeg on Linux, and would like to use the same basic approach for the four.
I believe I’ve found several USB-based devices that will allow sending four multiplexed audio signals, digitized, through a single USB port, but it’s not clear to me how I would capture this data into a single file. I’ve never worked with an audio file containing more than a left and right stereo track. (well, that and a video track, I suppose :)
Part of the problem is that I can’t "just try it", since I don’t want to buy the non-trivially-priced device if it’s not going to be usable.
Does anyone know if this is possible ? If so, does it "just work" when ffmpeg sees such a data stream, or is there some config I need to do (and if so, any hints on what, or where to find the information, would be most welcome).
TIA !
-
how to call a tcl file from another tcl file
28 novembre 2017, par M. D. Pi need to call a tcl file which hold the code for capturing image from another tcl file.
for example i my image.tcl file code is as follow :
proc image {} {
set time [clock format [clock seconds] -format %Y%m%d_%H%M%S]
exec ffmpeg -f dshow -s 1280x720 -i "video=Integrated Webcam" -benchmark c:/test/sample_$time.jpg
}
imageso, i want to call this image.tcl file from another tcl file called main.tcl,so the code for main.tcl can be as follow :
proc a {} {
"c:/test/image.tcl"
"c:/test/video.tcl"
"c:/test/live.tcl"
}
athe above tcl script should run one after another when i call main.tcl
any solution for this. add the code as answer. thanks.
-
FFMPEG : embed current time in milliseconds into video
22 décembre 2023, par stevendesuI would like to embed the computer's local time in milliseconds into a stream using FFMPEG.



I can embed the local time in seconds using drawtext like so :



ffmpeg -i <input /> -vf "drawtext=text='%{localtime\:%T}'" -f flv <output>
</output>



Looking through the documentation for drawtext, doing some tests, and Googling around, it seems like
localtime
andgmtime
don't provide milliseconds — just seconds. However thepts
options does have milliseconds :


ffmpeg -i <input /> -vf "drawtext=text='%{pts\:hms}'" -f flv <output>
</output>



I also found out that
pts
supports an offset, so I was able to use something like this to display local time (kind of) :


ffmpeg -i <input /> -vf "drawtext=text='%{pts\:hms\:$(date +%s.%N)}'" -f flv <output>
</output>



This had two problems :



- 

- It displayed something like
17499:17:29
for the time... I found a (rather complex) way to work around this - It uses the server's current time when you first run the ffmpeg command as the offset — not the server's current time when ffmpeg actually starts decoding video. I noticed ffmpeg had about a 2-second startup time, causing the clock to be off by roughly 2 seconds







Is there a way to modify my solution, or an entirely separate solution, that can embed server local time in milliseconds into the stream ?


- It displayed something like