
Recherche avancée
Autres articles (46)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (6930)
-
Anomalie #2108 (Fermé) : Pièce jointe dans un forum
19 juin 2011, par cedric - -
Anomalie #3269 (Nouveau) : Forum et dépendances vers les objets editoriaux natifs
15 septembre 2014, par Julien -Le pipeline "forum_afficher_fiche_objet" fait référence explicitement à rubrique, article, breve, site.
Breve et site étant des plugins, ce pipeline devrait être renseigné chez eux et non pas dans le forum. (Testé sur un objet editorial perso, ça fonctionne).Le forum ne devrait pas avoir conscience de l’existence de tel ou tel objet editorial.
Dans le cas présent, il ne devrait s’occuper que de article/rubrique (et encore).Idem pour les chaines de langue de la breve qui se trouvent dans le forum.
On se rend compte de ce genre de pb quand, dans le cadre du dev d’un objet editorial, on cherche à savoir comment fait le plugin breve pour faire telle ou telle chose. Et qu’on se rend compte qu’il ne le gère pas lui même :-)
Par ailleurs, dans inc-gestion_forum_liste.html, on trouve une boucle qui se base sur des id_article, id_breve, etc. qui n’existent plus ?
Ce code sert il encore a qqch ? -
ffmpeg - embed metadata that updates regularly in video
11 juillet 2018, par ketilI have a video that was recorded with an ROV, or an underwater drone if you will. There video is stored in raw H.264, and lots of data is logged during a dive, like temperature, depth, pitch/roll/yaw, etc. Each log entry is timestamped with seconds since epoch.
Copying the raw H264 into an mp4 container at the correct framerate is easy, but I’d like to create a video that displays some or all of the metadata. I’d like to automate the process, so that I can come back from a trip and run a conversion batch tool that applies the metadata from new dives into the new video recordings. I’m hoping to avoid manual steps.
What are my options to display details on the video ? Displaying text on the video is a common thing to do, but it isn’t as clear to me how I could update it every few seconds based on an epoch timestamp from the logs. If I use -vf and try to use frame ranges for when to display each value, that’ll be a very long filter. Would it help somehow if I generate an overlay video first ? I don’t see how that will be much easier, though.
Examples of some of the details I am hoping to embed are :
- depth
- temperature
- pitch, roll and yaw, perhaps by using "sprites" that can be rotated based on the logged rotation around each axis
Here’s a small sample of some of the logged data :
1531168847.588000000 depth: 5.7318845
1531168848.229000000 attitude.calc.roll: -178.67145730705903
1531168848.229000000 attitude.calc.pitch: 8.89832326120461
1531168848.598000000 pressure.fluid_pressure_: 1598.800048828125
1531168848.898000000 temp.water.temperature.temperature_: 13.180000305175781
1531168849.229000000 attitude.calc.roll: -177.03372656909875
1531168849.229000000 attitude.calc.pitch: 3.697970708364904
1531168849.605000000 pressure.fluid_pressure_: 1594.0999755859375
1531168850.235000000 attitude.calc.yaw: 19.87041354690573
1531168850.666000000 pressure.fluid_pressure_: 1593.300048828125The various values are logged at fairly irregular intervals, and they are not all updated at the same time.
I can massage the data into any necessary format. I also have a timestamp (epoch based) of when each recording started, so I can calculate approximate frame numbers as necessary. I have been searching for ways to apply the epoch timestamp to the video (PTS, RTCTIME/RTCSTART), without luck so far. If I manage that, I imagine use of the
enable
filter might be easier, but I’m still not sure very very long video filters are the way to go.