
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (62)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8767)
-
Anomalie #3620 : Token de prévisualisation inconsistant selon que l’article est en cours de rédact...
12 février 2017b b a écrit :
Donc, je parle bien d’une fonctionnalité native de SPIP dont le comportement a changé entre SPIP 2.1 et SPIP 3.1
Non, il n’y a pas non plus de trace de
var_relecture
dans le core en 2.1, la fonctionnalité du var_relecture est dans le plugin bonux et diffère du var_mode preview du core.Si j’ai donné les fichiers concernés, c’est bien pour montrer que var_relecture ne faisait jamais partie du Core ;-)
Contrairement au token pour la preview qui lui, est disponible depuis 3 ans en 2.1 (cf r21084)
-
Anomalie #4579 : Deprecated en php 8 à la création d’un article
19 octobre 2020, par b bVu https://php.watch/versions/8.0/deprecate-required-param-after-optional => solution simple, remplacer
$do
par$do = 'aff'
comme dansinc_chercher_rubrique_dist()
, à discuter. -
How to route FFMPEG screen capture output to Python for OpenCV processing ?
16 décembre 2016, par BitaniI am trying to capture the screen of a Mac, specifically game windows, and process them in real-time using OpenCV. I currently have it working with pyscreenshot and a conversion to a numpy array, but the max framerate of this method, on any system, appears to be around 10 FPS.
Obviously with games it would be very beneficial to be able to process 30+ FPS, and so I found that FFMPEG could record the screen using this command :
ffmpeg -y -f avfoundation -capture_cursor 1 -i "1" -pix_fmt yuv420p -vf scale=1024:-1 -r 30 out.mp4
That will write the screen to a file, out.mp4, with a width of 1024 and a frame rate of 30 FPS. Works perfectly ! But now I’ve searched and searched and searched for a method to route FFMPEG’s output to Python and.. no luck.
If anybody knows of a way to do this I would be greatly appreciative, as I’ve been trying to solve this for quite a while !
Thanks, and happy holidays !