
Recherche avancée
Autres articles (45)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (7167)
-
How to resize video but do not stretch/modify original video using ffmpeg [migrated]
8 mars 2023, par Kujo Ludin -
Detect orientation of a recorded video in android
3 mars 2017, par ultimateI want to make my custom media player and requires orientation info of video (for detecting it is recorded from front or back camera). for jpeg images i can use
ExifInterface.TAG_ORIENTATION
but for video how i can find this information.I tried to grab frame from video file and convert it into jpeg but again it always provides orientation
0
in all cases.Please help me. Thanks in advance.
-
ffmpeg extract video frames from url to a local variable in Node
8 octobre 2020, par FireBrandI'm using the Nodejs
spawn()
functionality to execute a shell command that goes like this :

ffmpeg -i https://someUrl.com/someVideo.mp4 -vf fps=30 frame-%d.bmp



Which works for me as to saving 30 frames per second into numbered files, but I'd like to save every frame into a local variable so I could parse it in whatever way I need to (specifically to a JSON).


What would be the best way to do so ?


Thanks in advance.