
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (11254)
-
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
-
Revision f43c3199bd : Rate control parameter adjustment Adjusts the bits per mb parameter about 10% s
5 octobre 2013, par Deb MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_ratectrl.c
Rate control parameter adjustmentAdjusts the bits per mb parameter about 10% smaller.
Results at speed 0 :
fullderfraw : +0.255%
fullstdhdraw : +0.262%
stdhdraw250 : +0.291%Change-Id : I2b7317ac3f61737bc77eb5470aad870cade83fa5
-
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 ?