
Recherche avancée
Médias (2)
-
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
Autres articles (65)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ) (...)
Sur d’autres sites (13181)
-
avformat/nutenc : Omit AV_PKT_DATA_QUALITY_STATS when storing side data.
25 juillet 2015, par Michael Niedermayer -
How to make FFMPEG insert dynamic data in a video stream ?
10 juin 2016, par BepehoI’m trying to add an dynamic overlay to a file FFMPEG is generating for me.
The overlay must display data received in real-time (let’s say the speed of a car where the video is being recorderd)
Note that my question is not about displaying things in the video, but about how to have FFMPEG receive this data so it can display them.
Has anyone done this before ? How ?
Thank you
-
merging sensor data and a video with ffmpeg on android
21 juin 2020, par hannesI have a recorded video file and a simultaneously recorded csv-file with sensor data in external storage on android. Now I need to overlay the sensor data to the video and save it again.


At the moment I try to do it with ffmpeg. My approach is to write one value of the sensor data to a textfile which can be used as input for the
drawtext
command. After the frame is generated the textfile file should be updated with the next sensor value and so on. In combination withreload=1
I think this should work. My Problem is that I don't know when a frame was created by ffmpeg to update the textfile ? Do I need to pause the ffmpeg command until the textfile has been updated ?

Or does someone have another (better) idea ?