
Recherche avancée
Autres articles (75)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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. -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (10323)
-
Sample player that shows ffmpeg libstagefright.cpp usage
24 février 2014, par Mayank AgarwalI am trying to write ffmpeg and OMXIL based mediaplayer.Facing issues in compiling the code with so many header files and libraries to include for android media framework.
Is there any sample player that uses ffmpeg libstagefright.cpp so that i can understand its usage and base my player on that.Regards
Mayank -
Convert video into individual frames using Python without ffmpeg ?
20 février 2015, par Mridula MadhusudanI need to compare 2 videos to check whether they are the same.
So I am planning to do the following :
- Split both the videos into individual frames
- Compare each frame with the corresponding frame of the ref video using
Python Image Lib
- Count the number of different frames to decide whether they are same.
I would like to know whether there is any function in Python to help me with the first step, i.e., to split the video into individual frames. I do not want to use
ffmpeg
to do the splitting.Thanks in advance for the help
-
How to split a video into individual encoded frames ?
23 mai 2015, par AsikSource video is H264 in an mp4 container, I’m trying to split it into individual encoded frames. I tried with the following command line :
ffmpeg -i "input.mp4" -f image2 "%d.h264"
But that creates jpegs with the extension "h264", rather than actual H.264 frames.