
Recherche avancée
Autres articles (62)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (4394)
-
Revision f752da8ce2 : Change to update of rate control factors. Remove damping parameter and use the
27 janvier 2015, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/encoder/vp9_ratectrl.c
Modify /vp9/encoder/vp9_ratectrl.h
Change to update of rate control factors.Remove damping parameter and use the damping
formula introduced by Yaowu Xu in all cases.Change-Id : I18db7e0d0f262d5140102f259ab07821d374d285
-
Anomalie #2315 : Impossible de télécharger une librairie avec un lien github
11 septembre 2011, par cedric -Aucun problème avec les redirection, mais l’entete renvoyé est : Server : nginx/1.0.4 Date : Sun, 11 Sep 2011 13:44:07 GMT Content-Type : application/octet-stream Connection : close Content-Length : 16195336 Content-Disposition : attachment ; filename=mathjax-MathJax-v1.1a-0-g1697387.zip Le (...)
-
FFMPEG libav : Control when video frame is captured
24 mai 2019, par Michael MurrayI am using a the libav library to record video from a CSI camera on a raspberry pi. I can successfully record the camera data to a file, however I now want to synchronise the frames between two cameras. I’ve setup a mechanism to synchronise when frames are captured, however I assumed when I called
av_read_frame(input_format_context, &packet)
, that the next frame would be captured. However, it turns out that the video is streamed into some buffer, and when the buffer is full, it waits until theav_read_frame
method is called which removes data from the buffer, thus allowing another frame to be captured.This is not the behaviour I want, as I need to control exactly when the frame is captured. Is there a mechanism in libav that I could use to produce this kind of behaviour ? Or am I going to have to use a different library for capturing video from the CSI device ?