
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (64)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (11563)
-
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 ?


-
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>