
Recherche avancée
Autres articles (90)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
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.
Sur d’autres sites (7082)
-
avcodec/loco : rotate other planes too for non-power of 2 widths
11 septembre 2018, par Paul B Mahol -
How can I display an image from Uint8List with the format AVFormat.RGBA8888 more quickly in Flutter ?
27 mars, par SalaweshI'm looking to display images as quickly as possible. input data is in the form of Uint8List from dart:typed_data, data is encoded in AVFormat.RGBA8888 from ffmpeg.


I'm looking for a solution to improve the performance of my graphics rendering code. And to see if it's possible to do it in a thread (isolate or compute).


Here's my current working code.


final buffer = await ui.ImmutableBuffer.fromUint8List(data.data);
 final descriptor = ui.ImageDescriptor.raw(
 buffer,
 width: data.width,
 height: data.height,
 pixelFormat: ui.PixelFormat.rgba8888,
 );
 final codec = await descriptor.instantiateCodec(); // native codec of ui.Image
 final frameInfo = await codec.getNextFrame();



This is done in my main thread


-
avfilter/vf_convolve : unbreak non-power of 2 width&height filtering
23 décembre 2017, par Paul B Mahol