
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (100)
-
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 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6960)
-
fate : Remove vsync drop from some h264 tests
20 mars 2016, par Michael Niedermayerfate : Remove vsync drop from some h264 tests
Note some tests need vsync drop to produce exact timestamps, these seem not to
need it. quite likely many more dont need it either, ive not checked beyond finding
one that needs it and the ones which have it removedSigned-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Revision 80465dae88 : Add SSE2 code and unit test for VP9 denoiser. This SSE2 is based on VP8 denoise
19 septembre 2014, par JackyChenChanged Paths :
Modify /test/test.mk
Add /test/vp9_denoiser_sse2_test.cc
Modify /vp9/common/vp9_common_data.c
Modify /vp9/common/vp9_rtcd_defs.pl
Modify /vp9/encoder/vp9_denoiser.c
Modify /vp9/encoder/vp9_denoiser.h
Add /vp9/encoder/x86/vp9_denoiser_sse2.c
Modify /vp9/vp9cx.mk
Add SSE2 code and unit test for VP9 denoiser.This SSE2 is based on VP8 denoiser’s SSE2 code. In VP8, there are
only 16x16 blocks in denoiser, while in VP9, there are 13 different
block sizes.By adding this SSE2 code, the improvement of encoder speed is around
20%(using C code vs using SSE2 code), vary for different clips.The unit test for VP9 denoiser is to confirm that the SSE2 code is
bit-exact with the C code. The unit test covers all block size.Change-Id : Ic8d8ac26db4ea40a5f146b5678a065af07eaaa3d
-
Fastest way to capture from webcams linux
31 octobre 2016, par Buddhishan ManamperiI am capturing images from UVC web cam /dev/video0 and convert them to jpeg and send them to my OCR server using Linux (Intel Edison - Yocto linux to be exact)
Currently I am using
ffmpeg
as my capturing software. This is the command I use to capture the image.
./ffmpeg -s 640x640 -f video4linux2 -i /dev/video0 -vframes 1 image.jpeg;
This command takes around 2 seconds to complete which is bad for me to implement realtime OCR.
Is there a fast method to capture from my UVC webcam ? Is there a way to keep the video device open always and grab a frame faster. Uncompressed images may not be an option because Im sending the photo using WIFI
I have tried different image capturing softwares like fswebcam and MPlayer ( Found here ) but the time is not improved.