
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (9057)
-
Winamp Media Player Released with WebM Support
21 juillet 2010, par noreply@blogger.com (John Luther)Winamp Media Player now supports native WebM playback. Read all about it on their blog.
-
Evolution #2275 (Nouveau) : [fonctionnalité] : possibilité de déplacer le thread/fil d’un forum d’...
2 septembre 2011, par Guillaume nomIl me semblerait très utile d’avoir la possibilité de déplacer des threads de forum sans avoir recours a un shell SQL ou pire : phpMyAdmin :) Cette fonctionnalité me semble avoir sa place dans l’interface privée ou dans le plugin "interface d’administrations des (...)
-
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.