
Recherche avancée
Autres articles (111)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (3128)
-
avformat/framecrcenc : Don't read after the end of side-data
6 décembre 2020, par Andreas Rheinhardtavformat/framecrcenc : Don't read after the end of side-data
Nothing guarantees that the size of side data containing a palette
is actually divisible by four (although it should be) ; but for
big-endian systems, an algorithm is used that presupposed this.
So switch to an algorithm that does not overread : It processes
four bytes at a time, but only if all of them are contained in
the side data.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
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 ?


-
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