
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (74)
-
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. -
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (12053)
-
How to use the data encoded in AVPacket to fill in RTMP_Packet and send it to RTMP server
5 décembre 2019, par DJI_loverI am currently using ffmpeg to push live streaming, but the effect is not very good, so I want to control the details of librtmp. I know that AVPacket contains encoded data (H264 NAL, but not real NAL). I hope someone can tell me how to fill RTMP_Packet with AVPacket data. I hope there are some reference codes .Thanks !!
-
Get video pixel data from Exoplayer in Android
25 février 2018, par Oliver MetzIs it possible to grab the pixel data (e.g. as RGB byte array) from a running video within the ExoPlayer ? Ideally as the real video resolution and not the size as the shown View. I’d want to forward that data to OpenCV for ImageProcessing purposes.
Alternatively I’m looking for a robust (ffmpeg based) Android framework to input videos into OpenCV where the input might be IP-Cameras, local files, online files and online streams.
Any help is appreciated.
-
How to add telemetry data from a video to jpg file ?
10 septembre 2021, par code0x00I have a 360deg video that is created by Go Pro Fusion and has telemetry data in it. I want to extract the telemetry data and put inside of jpg file.


I am extracting images using ffmpeg :


ffmpeg -i VIDEO.mp4 -r 5 img%d.jpg



How can i extract metadata(including telemetry data) for each frame and put that metadata inside jpg image of that frame.


I tried using


exiftool -ee -a -u -U -TagsFromFile video.mp4 img1.jpg



But all the metadata that appear in video does not appear in image.


I tried this :


exiftool -track1:VideoFrameRate=29.97 img1.jpg 



But getting this warning :


Warning: Sorry, Track1:VideoFrameRate doesn't exist or isn't writable
Nothing to do.



20.00



I get this from video. But unable to set in jpg as mentioned above.


And how to ensure that the images are assigned with the exact GPS data ?