
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (36)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (7507)
-
Pass double pointer parameter through P/Invoke when it is NULL
1er août 2015, par BartMaoI try to call FFMPEG method via P/Invoke
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);
So my P/Invoke method defined like this :
[DllImport("avformat-55", EntryPoint = "avformat_find_stream_info", CallingConvention = CallingConvention.Cdecl)]
public extern static int AVFormatFindStreamInfo(IntPtr ic, ref IntPtr options);and I need pass an IntPtr.Zero for the options, so I call this way :
var p = IntPtr.Zero;
rst = AVFormatFindStreamInfo(context, ref p);and an AccessViolation exception throws.
But when I remove the ref from the signature, and directly pass an IntPtr.Zero to it, it actually works.
I think the signature with ref keyword is the right way, but I don’t know why the exception throws. -
Anomalie #3016 : imagepalettetotruecolor, double définition (en php 5.5 beta)
4 septembre 2013, par Maïeul RouquetteIl semblerait que cela n’ait pas été integré dans le tag 3.0.11 (cf http://core.spip.org/projects/spip/repository/entry/tags/spip-3.0.11/ecrire/inc/filtres_images_lib_mini.php).
Il serait bon de l’intégrer ans le prochain tag. Voir http://contrib.spip.net/SPIP-3-0-11-what-else#forum470521
-
swscale/swscale_unscaled : use 8 line alignment for planarCopyWrapper with dithering
3 août, par Marton Balintswscale/swscale_unscaled : use 8 line alignment for planarCopyWrapper with dithering
Dithering relies on a 8 line dithering table and the code always uses it from
the beginning. So in order to make dithering independent from height of the
slices used we must enforce a 8 line alignment.Fixes issue #20071.
Signed-off-by : Marton Balint <cus@passwd.hu>