
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
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 (7515)
-
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>