
Recherche avancée
Autres articles (65)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (8087)
-
Revision 75d77e36db : Fix the all intra modes mask constant. The new constant expands to 0x3fc00808.
28 mai 2014, par Alex ConverseChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Fix the all intra modes mask constant.The new constant expands to 0x3fc00808.
Change-Id : Ib5109e4faf035fe0402b59f8a8d2e412628b9276
-
avcodec/vaapi : mask unused bits in bitplane_present.value
25 février 2018, par Jerome Borsboomavcodec/vaapi : mask unused bits in bitplane_present.value
Due to the union construct, unused bits in bitplane_present.value might
be uninitialized even when the used bits are all set to a value.
Masking the unused bits prevents spurious true values when all used
bits are unset, e.g. skipped pictures.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>
-
ffmpeg AVPixelFormat and manager C++ System::Drawing::Imaging::PixelFormat conflict
29 novembre 2016, par H S TThere is
#define PixelFormat AVPixelFormat
inffmpeg
. You can not useSystem::Drawing::Imaging::PixelFormat
in a header file containing this. How can I usePixelFormat
in C # ?.h
using namespace System::Drawing::Imaging;
public ref class CTest{
static Imaging::PixelFormat Format24bppRGB = Imaging::PixelFormat::Format24bppRgb
};.cpp
#include"ffmpeg head file"
...