
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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. -
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" (...)
Sur d’autres sites (9636)
-
avcodec/pthread_frame, decode : allow errors to happen on draining
28 avril 2017, par Muhammad Faizavcodec/pthread_frame, decode : allow errors to happen on draining
So, all frames and errors are correctly reported in order.
Also limit the numbers of error during draining to prevent infinite loop.This fix fate failure with THREADS>=4 :
make fate-h264-attachment-631 THREADS=4
This also reverts a755b725ec1d657609c8bd726ce37e7cf193d03f.Suggested-by : wm4, Ronald S. Bultje, Marton Balint
Reviewed-by : w4 <nfxjfg@googlemail.com>
Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Muhammad Faiz <mfcc64@gmail.com> -
avcodec/rdft : remove sintable
7 juillet 2017, par Muhammad Faizavcodec/rdft : remove sintable
It is redundant with costable. The first half of sintable is
identical with the second half of costable. The second half
of sintable is negative value of the first half of sintable.The computation is changed to handle sign of sin values, in
C code and ARM assembly code.Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>
-
avutil : merge slice threading implementation from avcodec and avfilter
11 juillet 2017, par Muhammad Faizavutil : merge slice threading implementation from avcodec and avfilter
Rework it to improve performance. Now mutex is not shared by workers,
instead each worker has its own mutex and condition variable. This
reduces lock contention between workers. Also use atomic variable for
counter.The interface also allows execute to run special function on main
thread, requested by Ronald.Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>